We're currently changing our mail delivery system to use solely UTF-8
.
There seems to be a problem with the sender name, when the email contains non ASCII chars (hebrew) the subject & body render ok, but the sender name, as it appears in my gmail account, becomes - ??????
.
There is a line of code:
myMail.BodyPart.Charset = "UTF-8"
So I thought there should be some code of the like:
myMail.SenderName.Charset = "UTF-8"
But I can't seem to find the right code to use, assuming this would do the trick.