add settable reply to

This commit is contained in:
Asim Aslam
2021-07-01 12:49:34 +01:00
parent 2d6eecc1e9
commit 8fc37bc5e5
3 changed files with 39 additions and 23 deletions

View File

@@ -14,12 +14,14 @@ message SendRequest {
string from = 1;
// the email address of the recipient
string to = 2;
// an optional reply to email address
string reply_to = 3;
// the email subject
string subject = 3;
string subject = 4;
// the text body
string text_body = 4;
string text_body = 5;
// the html body
string html_body = 5;
string html_body = 6;
}
message SendResponse {