Back to Sendgrid Nodejs

CC, BCC and Reply To

docs/use-cases/cc-bcc-reply-to.md

8.1.6451 B
Original Source

CC, BCC and Reply To

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:

js
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>',
};