C# Smtp

ace333

Newcomer
Joined
Jul 19, 2005
Messages
22
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
 
Back
Top