Kumar V
Kumar V

Reputation: 8840

setting mail header in c#

hi i need to set header content type in c#. when i send mail from c#, i'm getting the mail with html tags. how can set content type in mail sending code?

Upvotes: 1

Views: 2593

Answers (2)

Asad
Asad

Reputation: 21918

    MailMessage mail = new MailMessage();

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

For more alterations, you can do with templates in your email, see

Hope this helps

Upvotes: 1

Fitzchak Yitzchaki
Fitzchak Yitzchaki

Reputation: 9163

In case that you asking how can I send email in 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 );

Source: here.

Upvotes: 1

Related Questions