You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adjustment to allow sending Base64 attachments, not just plain text and fix html preview on message list (#28)
* Adjustment to allow sending Base64 attachments, not just plain text and Added a few parameters to README.md
* A bug that prevented the preview of email bodies in HTML from being displayed in the message list has been fixed
|from|string|yes|The email address from which the email is sent.<br>Must be something@yourdomain.com.<br> The the domain has to be added to SES and be verified.|`{"from":"noreply@yourdomain.com"}`|
125
125
|to|string/string[]|yes|The emails recipient(s)|`{"to":"joe@somedomain.com"}` or `{"to": ["joe@somedomain.com", "jane@somedomain.com"]}`|
126
+
|cc|string|no|"The email address to which a copy of the email will be sent.".|`{"cc":"cc_address@yourdomain.com"}`|
127
+
|reply_to|string|no|The email address from which the reply will be sent.|`{"reply_to":"reply@yourdomain.com"}`|
126
128
|headers|object|no|An object containing key/value pairs of headers|`{"headers": {"X-Entity-Ref-ID": "00"}}`|
0 commit comments