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: 'support@mydomain.com',
ReturnPath: 'support@mydomain.com',
};
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 support@mydomain.com
. 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 <support@mydomain.com>'
Thanks to @Neil Lunn