Skip to content

Instantly share code, notes, and snippets.

@saigowthamr
Last active June 10, 2018 15:34
Show Gist options
  • Select an option

  • Save saigowthamr/3692640733e965a61d8ffc9b4ae0424a to your computer and use it in GitHub Desktop.

Select an option

Save saigowthamr/3692640733e965a61d8ffc9b4ae0424a to your computer and use it in GitHub Desktop.
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