Can I use Amazon's SES to send a display name with the source email address?
With the Java SDK you can include the display name in the sender
field using the format:
John Doe <[email protected]>
I assume it is the same with the .NET SDK.
Just use the .ToString() method from the MailAddress object, and you'll get the John Doe <[email protected]>
string. Send this string to AWS.