using this code to send email
var message = new MailMessage("[email protected]", "[email protected]");
message.Subject = "Testing";
message.IsBodyHtml = true;
message.Body = "<html><body>IMAGINE A LOT OF HTML CODING HERE</body></html>";
The problem is...I just copied the HTML that I want to send as email and now I have to make the whole HTML code in ONE single!! otherwise it is saying ";" missing!! I mean I can't now keep on removing spaces and put it ALL in one line! Its too much HTML code that I need to send..what do I do ? :/
[EDIT] another ques : Is there a linit to this message.Body ??? like limit to how much HTML can be inserted in this ??