将希伯来语文本绑定到电子邮件C#的右侧

时间:2018-10-21 06:10:02

标签: smtp hebrew mailing

我需要为使用smtp的几个人制作时事通讯。这是我的邮寄代码:

    MailMessage mail = new MailMessage();

    mail.From = new MailAddress(e_mail);
    mail.To.Add(email);
    mail.Subject = "ברוכים הבאים לאלמינדה‎";
    mail.Body =
    "\u200f !ברוכים הבאים לאלמינדה \n" +
    "\u200f .תודה על הרשמתכם \n" +
    "\u200f www.elminda.com :לקבלת מידע נוסף ולצפייה בסרטון קצר המתאר את הטכנולוגיה של אלמינדה, בקרו באתר שלנו";

    mail.BodyEncoding = Encoding.UTF8;

    SmtpClient smtpServer = new SmtpClient("smtp.gmail.com");
    smtpServer.Port = 587;
    smtpServer.Credentials = new System.Net.NetworkCredential(e_mail, password) as ICredentialsByHost;
    smtpServer.EnableSsl = true;
    ServicePointManager.ServerCertificateValidationCallback =
        delegate (object s, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
        { return true; };
    smtpServer.Send(mail);

问题在于文本必须绑定到屏幕的右侧: http://i.piccy.info/i9/4cc95eb707430a6014f1405c27523fad/1540042400/59769/1276656/right_side.jpg

但是文本在左侧: http://i.piccy.info/i9/0b383bb7d85b32fdb9b1f04bca29cde9/1540053132/73944/1276656/leftSide.jpg

我该怎么做?

0 个答案:

没有答案