You can specify the cc
, bcc
, and replyTo
fields for more control over who you send the email to and where people will reply to:
const msg = {
to: '[email protected]',
cc: '[email protected]',
bcc: ['[email protected]', '[email protected]'],
from: '[email protected]',
replyTo: '[email protected]',
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
};