CDO Message encoding
-
I really hope somebody can help me here, this is wrecking my head... Our application is sending emails through CDO (from asp) and we have recently had the requirement to send these mails in foreign character sets (greek specifically in this case). So i am setting the mail encoding like so:
With objMessage.Bodypart ' Initialize the bodypart to support UTF-8
.ContentMediaType = "text/plain"
.Charset = "utf-8"
.ContentTransferEncoding = "8bit"
End WithOn my development system (XP, which has been set to all Greek at present, just to confuse me), i send the email and everything is fine. On our test system (Server 2003, also all greek), everything but the subject line of the email is fine... When i look at the source of the emails from either system, the email from the test system is missing the encoding (?utf-8?) markup around the subject text. Does anybody have any idea why this might be happening...?
-
I really hope somebody can help me here, this is wrecking my head... Our application is sending emails through CDO (from asp) and we have recently had the requirement to send these mails in foreign character sets (greek specifically in this case). So i am setting the mail encoding like so:
With objMessage.Bodypart ' Initialize the bodypart to support UTF-8
.ContentMediaType = "text/plain"
.Charset = "utf-8"
.ContentTransferEncoding = "8bit"
End WithOn my development system (XP, which has been set to all Greek at present, just to confuse me), i send the email and everything is fine. On our test system (Server 2003, also all greek), everything but the subject line of the email is fine... When i look at the source of the emails from either system, the email from the test system is missing the encoding (?utf-8?) markup around the subject text. Does anybody have any idea why this might be happening...?
-
Doesn't really cover for asp using CDO...