I am sending emails from NodeJS using Nodemailer and sestransport on AWS, and am wondering how I can change the 'from name'?
fFr example, for from I put
const mailOptions =
{
from: '<noreply@example.com>',
to: 'someone@example.com',
subject: 'Hi',
}
When I get the email, it appears to come from 'noreply'. I would like to be able to change to name to anything, for example 'tom hanks', but still have the reply address noreply@example.com. Is that possible?