...
Code Block | ||||
---|---|---|---|---|
| ||||
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}.`
}); |
...