Send Email in Arabic
-
I want to send Email in Arabic ; I have used genaral SmtpMail class to send email,.. but when i send Arabic text email it shows like '?????????' for the all text; i did objMsg.BodyFormat = MailFormat.Html; also but no Luck. There are many ActiveX,.Component available,.. But i want to know in using .Net class same SMTP; If any body know plz tell me; Your corperation is appreciated! B/rgs Anushka
-
I want to send Email in Arabic ; I have used genaral SmtpMail class to send email,.. but when i send Arabic text email it shows like '?????????' for the all text; i did objMsg.BodyFormat = MailFormat.Html; also but no Luck. There are many ActiveX,.Component available,.. But i want to know in using .Net class same SMTP; If any body know plz tell me; Your corperation is appreciated! B/rgs Anushka
try using
mailMessage.BodyEncoding = Encoding.Unicode;
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
try using
mailMessage.BodyEncoding = Encoding.Unicode;
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
I've used
theMessage.BodyEncoding = Encoding.UTF8;
Is usingEncoding.Unicode
better for Arabic thanEncoding.UTF8
?Regards, Gary