Click here to Skip to main content
Sign Up to vote bad
good
See more: C#3.0ASP.NET
I am try to send email in html body format but it not working.
I am using "System.Net.Mail" namespace and i also set MailMessage property IsBOdyHtml true.
Posted 8 Sep '11 - 20:38

Comments
Reiss - 9 Sep '11 - 2:44
We need more details in order to help - can you detail the exception (if any) you are getting, along with the relevant code section

3 solutions

Hi,
After setting IsBodyHTMl true,you'll have to make the body HTML check the code
 
string text= "<table><tr><td>EmpId</td><td>Emp name</td><td>age</td></tr><tr><td>value</td><td>value</td><td>value</td></tr></table>"
MailMessage mail = new MailMessage();
mail.To ="me@mycompany.com";
mail.From = "you@yourcompany.com";
mail.Subject = "this is a test email.";
mail.IsBodyHtml=true; 
mail.Body = text;
MailAttachment attachment = new MailAttachment( Server.MapPath( "test.txt" ) ); 
mail.Attachments.Add( attachment );	//add the attachment
SmtpMail.SmtpServer = "smtp.gmail.com";  //your real server goes hereSmtpMail.Send( mail );
  Permalink  
Comments
Sumit Kumar Singh India - 9 Sep '11 - 3:02
Hi Syed Salman Raza Zaidi, still it not working. if i send simple text it worked fine but not with html content.
Syed Salman Raza Zaidi - 9 Sep '11 - 3:23
Check this http://www.systemwebmail.com/faq/2.2.aspx And http://www.aspheute.com/english/20000918.asp
  Permalink  
Comments
Sumit Kumar Singh India - 9 Sep '11 - 3:00
Hi MaulikDusara, for this code we need to System.Web.Mail namespace and it not working in my project, i don't know why
MaulikDusara - 9 Sep '11 - 3:36
which error are you getting.. and in mentioned article there is source code also available
<pre lang="c++">><
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 208
1 OriginalGriff 203
2 Abhinav S 168
3 Rohan Leuva 150
4 Abhishek Pant 145
0 Sergey Alexandrovich Kryukov 8,474
1 OriginalGriff 6,714
2 CPallini 3,603
3 Rohan Leuva 2,853
4 Maciej Los 2,234


Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 20 Sep 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid