Last active
March 3, 2021 17:24
-
-
Save mb8z/822d6df4a3241d9a44dcd887881aa0a3 to your computer and use it in GitHub Desktop.
Sending an email to one recipient with bccs and ccs
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 { Emails } = require('automagically'); | |
const send = async () => { | |
const email = Emails.send({ | |
from: { email: '[email protected]', name: 'AwesomeApp' }, | |
to: [{ email: '[email protected]', name: 'John Doe' }], | |
bcc: [{ email: '[email protected]', name: 'Kylo Ren' }], | |
cc: [{ email: '[email protected]', name: 'Leia' }], | |
subject: 'Welcome', | |
text: 'Hey there, this is a test email!', | |
}); | |
}; | |
send(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment