Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleExample
pjs.sendEmail({
  from: 'Nodemailer <example@nodemailer.com>',
  to: 'Nodemailer <example@nodemailer.com>',
  subject: 'Test Email Message',
  text: 'For clients with plaintext support only',
  html: `<h1>Thank you for placing your order.</h1>
         Your order number is ${ordNum}.`
});

...