2

我使用 mailsystem.NET 库将消息放入我的收件箱。这是我的代码:

Imap4Client imap = new Imap4Client();
imap.ConnectSsl("imap.gmail.com", 993);
imap.Login(mylogin, mypassword);
Mailbox mails;
mails = imap.SelectMailbox("INBOX");
Message commomMessage = new Message();
commomMessage.From = new Address("someAddress", "someName");
commomMessage.To.Add(mylogin, "myName");
commomMessage.Subject = "someSubject";
commomMessage.BodyHtml.Text = "Привет мир";//or some cyrillic text 
commomMessage.Date = DateTime.Now;
mails.Append(commomMessage);

当我打开我的 gmail 收件箱时,我看到了这封邮件,但正文包含????? ???而不是“привет мир”。如果commomMessage.BodyHtml.Text只包含拉丁字符,则没有问题。

4

1 回答 1

2

如果Message类继承自 .NET 的MailMessage类,请尝试使用它的BodyEncoding属性并将其设置为System.Text.Encoding.UTF8,例如:

commomMessage.BodyEncoding =  System.Text.Encoding.UTF8;

如果Message类不继承自MailMessage尝试找到其他方式为您的电子邮件设置适当的编码。我相信这是您可以通过使用 UTF8 编码来解决的问题。

于 2012-10-18T11:01:19.427 回答