| Author |  | 
      
        | trymailbee Newbie
 
  
 
 Joined: 28 January 2008
 Online Status: Offline
 Posts: 2
 | 
          I use this code to send mail:
           | Posted: 28 January 2008 at 10:54pm | IP Logged |   |  
           | 
 |  
 
| 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
 | 
          What do you mean of "can't read unicode string"? Is it broken?
           | Posted: 29 January 2008 at 3:52am | IP Logged |   |  
           | 
 |  
 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
 | 
          thanks Andrew,
           | Posted: 29 January 2008 at 5:35pm | IP Logged |   |  
           | 
 |  i will send now.
 | 
       
        | Back to Top |     | 
       
       
        |  |