8

以下の方法でメールを送信しています。メールを太字でフォーマットできるようにしたい。

元。

差出人: 名前

メール: メールアドレス

メッセージ: メッセージ

どうすればいいですか?

    protected void SendMail()
    {
        var fromAddress = "myemail@gmail.com";
        var toAddress = "myotheremail@gmail.com";
        const string fromPassword = "mypassword";

        string subject = "New Email from Website";
        string body = "From: " + name.Text + "\n";
        body += "Email: " + email.Text + "\n";
        body += "Message: \n" + message.Text + "\n";

        var smtp = new System.Net.Mail.SmtpClient();
        {
            smtp.Host = "smtp.gmail.com";
            smtp.Port = 587;
            smtp.EnableSsl = true;
            smtp.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network;
            smtp.Credentials = new NetworkCredential(fromAddress, fromPassword);
            smtp.Timeout = 20000;
        }
        // Passing values to smtp object
        smtp.Send(fromAddress, toAddress, subject, body);
    }
4

2 に答える 2

9

isBodyHtml を true に設定します。次のコードで説明します。太字のテキストを送信するには、" <b> My bold text </b>" を使用できます。斜体のテキストを送信するには、" <i> Italic text </i>" を使用できます。下線付きのテキストを送信するには、" <u> underlined text </u>" を使用できます。

次の方法をコピーして使用できます。この方法を使えば、とても簡単にメールを送ることができます。

public static bool SendEmail(string To, string ToName, string From, string FromName, string Subject, string Body, bool IsBodyHTML)
{
    try
    {
        MailAddress FromAddr = new MailAddress(From, FromName, System.Text.Encoding.UTF8);
        MailAddress ToAddr = new MailAddress(To, ToName, System.Text.Encoding.UTF8);
        var smtp = new SmtpClient
        {
            Host = "smtp.gmail.com",
            Port = 25,
            EnableSsl = true,
            DeliveryMethod = SmtpDeliveryMethod.Network,
            UseDefaultCredentials = false,
            Credentials = new System.Net.NetworkCredential("your email address", "your password")
        };

        using (MailMessage message = new MailMessage(FromAddr, ToAddr)
        {
            Subject = Subject,
            Body = Body,
            IsBodyHtml = IsBodyHTML,
            BodyEncoding = System.Text.Encoding.UTF8,

        })
        {
            smtp.Send(message);
        }
        return true;
    }
    catch
    {
        return false;
    }
}

このメソッドを呼び出すときは、次のように呼び出します

 SendEmail("Here address to" , "Here to name" , "Here from", "here from name", "here subject" , here Body, " Here whether HTML or Plain" )
于 2013-06-22T04:00:47.863 に答える
3

わずかな変更が必要です。

  1. IsBodyHtmlと言うtrue
  2. すべて\n<br/>

これが最後のコードです

protected void SendMail()
{
    var fromAddress = "myemail@gmail.com";
    var toAddress = "myotheremail@gmail.com";
    const string fromPassword = "mypassword";

    string subject = "New Email from Website";
    string body = "From: " + name.Text + "<br/>";
    body += "Email: " + email.Text + "<br/>";
    body += "Message: <br/>" + message.Text + "<br/>";

    var smtp = new System.Net.Mail.SmtpClient();
    {
        smtp.Host = "smtp.gmail.com";
        smtp.Port = 587;
        smtp.EnableSsl = true;
        smtp.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network;
        smtp.Credentials = new NetworkCredential(fromAddress, fromPassword);
        smtp.Timeout = 20000;
    }
    // Passing values to smtp object
    smtp.Send(fromAddress, toAddress, subject, body,IsBodyHtml:true);
}

それが役立つことを願っています。

于 2013-06-22T06:42:25.147 に答える