I am sending Emails via the aws-sdk
for Nodejs like this:
const params = {
Destination: {
ToAddresses: [... ],
},
Message: {
Body: {
Html: {
Data: `...`,
Charset: 'utf-8'
},
},
Subject: {
Data: `...`,
Charset: 'utf-8'
}
},
Source: '[email protected]',
ReturnPath: '[email protected]',
};
awsConfig.ses.sendEmail(params, (err, data))
The received email looks like this in Gmail:
However, I want to know how to change this name:
Currently the from name is support
, because the from email is [email protected]
. But I want it to be replaced by the company like GitHub
below.
Thanks in advance for any help!
Here is what I ended up doing:
I set the Source
attribute in the params to
'CompanyName <[email protected]>'
Thanks to @Neil Lunn
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With