Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't display in outlook express

Status
Not open for further replies.

lastcar2000

Programmer
Apr 27, 2001
6
HK
I want to send a mail with Chinese font by using AgoMailSend object.

After I send the mail and receive it in Outlook Express, it can only display English text but chinese can't. I am also trying to send mail in unicode format and still fail.

My Outlook express can display Chinese fonts and text.
I am using silverstream 3.5.3. Is that the problem of Silverstream version or Outlook express? Here is my sendmail coding(sorry,can't show my mail address):

AgoMailSend msg = new AgoMailSend();
msg.setFrom("William", "xx@xx.com");
msg.addToAddress("William", "xx@xx.com");
msg.setSubject("test display chinese font");
msg.setOrganization("Boss");
msg.addPlainTextPart("a·s ¤j ³U¡@ ¡]¨C½c 300 ­Ó¡^¦U©±çE ¥²¶· ©ó¨C¤Ñ¤U¤È¤@®É¤T¤Q¤À©Î¤§«e§â¦¹ªí®æ¶Ç¯u¨ì¼g¦r¼Ó¸É¦^©Ò»Ý¤§Âøª«¡Cz");
msg.submitMessage("128.100.6.2");

Thanks for help.
 
Hello, I've got the same sort of problem. I'm using VB.net, and Outlook 2000 I can send unicode text to word 2000 but not to outlook! I've tried setting the mailitem.body and .htmlbody and neither works.

Did you manage to solve it in the end?

Regards,
Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top