Interview Question in Data Transformation Services (DTS)
Interview Question :: Korean characters in email subject line
I'm sending bulk email via MS-SQL server's "DTS Meta Data Service Package" (Visual Basic). I can get the email body text into Korean by using the parameter:
.BodyPart.Charset = "euc-kr"
How do I do the same for the subject line? I'd like to include a line something like:
.Subject = objMessage.EncodeHeader(Subject, "euc-kr")
but I get "Does not support this method"
I have the same problem in Chinese and Japanese. Advice? Or better yet, VB code?

Loading ...