我使用 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
只包含拉丁字符,则没有问题。