Created
November 30, 2021 19:21
-
-
Save ryanburnette/35e2fe9a8e3bd0ead0fe54aff161df59 to your computer and use it in GitHub Desktop.
This file contains 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
await postmark.sendEmail({ | |
From: '[email protected]', | |
ReplyTo: `${req.body.xname} <${req.body.xemail}>`, | |
To: to, | |
Cc: '[email protected]', | |
Subject: `ryanburnette.com api submission to ${req.body.form} from ${req.body.xname}`, | |
HtmlBody: html, | |
TextBody: text, | |
MessageStream: 'outbound', | |
Headers: [ | |
{ Name: 'Message-ID', Value: record.id + '@ryanburnette.com' }, | |
{ Name: 'X-Entity-Ref-ID', Value: record.id + '@ryanburnette.com' }, | |
{ Name: 'References', Value: record.id + '@ryanburnette.com' } | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment