Author |
|
trymailbee Newbie
Joined: 28 January 2008
Online Status: Offline Posts: 2
|
Posted: 28 January 2008 at 10:54pm | IP Logged
|
|
|
I use this code to send mail:
Code:
MailBee.Mime.MailMessage mm = new MailBee.Mime.MailMessage();
mm.LoadBodyText(@"C:\MAIL\Proc essingResult.html", MailBee.Mime.MessageBodyType.Html,System.Text.Encoding.UTF8, MailBee.Mime.ImportBodyOptions.ImportRelatedFiles);
mm.From.AsString="***removed***";
mm.To.Add("***removed***");
mm.Subject="Test Bee Mail !!!";
MailBee.SmtpMail.Smtp.LicenseKey = "***removed***";
MailBee.SmtpMail.Smtp sm = new MailBee.SmtpMail.Smtp();
MailBee.SmtpMail.Smtp Server ss = new MailBee.SmtpMail.SmtpServer();
ss.Name="mail.tsisys.com.vn";
ss.Port=25;
ss.AuthMethods=MailBee.Authent icationMethods.None;
sm.SmtpServers.Add(ss);
sm.Message=mm;
sm.Send(); |
|
|
I receive this message but i can't read unicode string, am i right, help me
thanks for reading.
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 29 January 2008 at 3:52am | IP Logged
|
|
|
What do you mean of "can't read unicode string"? Is it broken?
Could you please provide us with a sample of message (as .eml file) which contains the unreadable unicode string?
Please also provide us with ProcessingResult.html file, so we would be able to reproduce the issue directly.
You can use Request Support form for this purpose.
Best regards,
Andrew
|
Back to Top |
|
|
trymailbee Newbie
Joined: 28 January 2008
Online Status: Offline Posts: 2
|
Posted: 29 January 2008 at 5:35pm | IP Logged
|
|
|
thanks Andrew,
i will send now.
|
Back to Top |
|
|