Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

MailMessage mail = new MailMessage();

 

mail.To = xxx@xxx.com;

 

mail.From = xxx@xxx.com;

 

mail.Subject = "xxx 10/10/2005";

 

mail.BodyFormat = MailFormat.Html;

 

mail.Body ="large amount of html approximately 1080 rows of a table";

 

SmtpMail.SmtpServer = "xxx";

 

SmtpMail.Send(mail);

 

Is there a limit to the amount of data that can be send using the c# mail methods...

I am trying to send 1078 rows of data through but the html I get out from the email is slightly deformed, i.e.

! are inserted between some of the </!td> tags.....

If I limit it to 140 rows or less things are fine......

 

Is there a max number of data that can be sent at a time..... Obviously I could send more that one email,

but would prefer not to do that

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...