2010-02-10 66 views
1

您好,我需要在C#中設置標題內容類型。當我從c#發送郵件時,我收到帶有html標籤的郵件。如何在郵件發送代碼中設置內容類型?在C#中設置郵件標題#

+1

你是如何發送郵件?顯示代碼。 – 2010-02-10 05:39:56

回答

1

如果你問我怎麼能在C#發送電子郵件:

MailMessage mail = new MailMessage(); 
mail.To = "[email protected]"; 
mail.From = "[email protected]"; 
mail.Subject = "this is a test email."; 
mail.Body = "this is my test email body"; 
mail.IsBodyHtml = false; 
SmtpMail.SmtpServer = "localhost"; //your real server goes here 
SmtpMail.Send(mail); 

來源:here

1
MailMessage mail = new MailMessage(); 

    // need to set this property 
    mail.IsBodyHtml = false; 

更多的改變,你可以在你的郵件模版做,看到

希望這有助於

+0

謝謝..它工作正常。 – 2010-02-10 11:42:23