Skip to content

Instantly share code, notes, and snippets.

@mxro
Created April 26, 2022 22:40
Show Gist options
  • Save mxro/fef65b619403feca57b579f6f7296402 to your computer and use it in GitHub Desktop.
Save mxro/fef65b619403feca57b579f6f7296402 to your computer and use it in GitHub Desktop.
await ses
.sendEmail({
Destination: { ToAddresses: ['test@test.com'] },
Message: {
Subject: { Charset: 'UTF-8', Data: 'Test email' },
Body: {
Text: {
Charset: 'UTF-8',
Data: 'This is the message body in text format.',
},
},
},
Source: 'sender@mydomain.com',
})
.promise();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment