G
Guest
I have an aspx page where user fill-in fields and then hit submit button. All text and text values are in Japanese Language(Shift-JIS). This page sends an email to outlook users. Once user receives email, all these japanese characters gets converted into ????(question marks). On web browser page show up all japanese characters correctly but in outlook email it doesn't. Following is the code sample from the aspx page I am using to accomplish this. Please post any helpful information regarding how this issue could be resolve
Dim objMM as New MailMessage(
objMM.To = ddlApprovingManagerCDSID.SelectedItem.value
objMM.BodyFormat = MailFormat.Htm
objMM.Priority = MailPriority.Norma
objMM.Subject = "æ–°ã—ã„IMACリクエスト - " & txtCDSID.Tex
objMM.Body = "Japanese Languge Characters like æ–°ã—ã„IMACリクエスト
SmtpMail.SmtpServer = "abcsmtp.somecompany.com
SmtpMail.Send(objMM
Regard
Muhammad Ahma
IBM Global Services
Dim objMM as New MailMessage(
objMM.To = ddlApprovingManagerCDSID.SelectedItem.value
objMM.BodyFormat = MailFormat.Htm
objMM.Priority = MailPriority.Norma
objMM.Subject = "æ–°ã—ã„IMACリクエスト - " & txtCDSID.Tex
objMM.Body = "Japanese Languge Characters like æ–°ã—ã„IMACリクエスト
SmtpMail.SmtpServer = "abcsmtp.somecompany.com
SmtpMail.Send(objMM
Regard
Muhammad Ahma
IBM Global Services