tweaks to docs (#200)

This commit is contained in:
Dominic Wong
2021-09-02 15:23:24 +01:00
committed by GitHub
parent 2e5af32faf
commit d378ef2de5
39 changed files with 83 additions and 88 deletions

View File

@@ -2,7 +2,7 @@ Send emails in a flash
# Emails Service
A quick and easy email api. Simply provide a from, to and text or html body.
A quick and easy email API. Simply provide a from, to, and text or html body.
Powered by [Sendgrid](https://sendgrid.com)

View File

@@ -8,9 +8,9 @@ service Email {
rpc Send(SendRequest) returns (SendResponse) {}
}
// Send an email by passing in from, to, subject and a text or html body
// Send an email by passing in from, to, subject, and a text or html body
message SendRequest {
// the name of the sender
// the display name of the sender
string from = 1;
// the email address of the recipient
string to = 2;