Last active
June 10, 2018 15:34
-
-
Save saigowthamr/3692640733e965a61d8ffc9b4ae0424a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const emailParams = { | |
| Source: "yourname@mail.com", // Your Verified Email | |
| Destination: { | |
| ToAddresses: ["yourname@mail.com"] // Your verfied Email | |
| }, | |
| ReplyToAddresses: [req.body.email], | |
| Message: { | |
| Body: { | |
| Text: { | |
| Charset: "UTF-8", | |
| Data: `${message} from ${req.body.email}` | |
| } | |
| }, | |
| Subject: { | |
| Charset: "UTF-8", | |
| Data: "You Received a Message from www.domainname.com" | |
| } | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment