> I'm using the following code to send an email and it's working OK but
> using
> \r\n is not breaking up the lines and I tried Convert.ToChar(10) also and
> still it doesn't carriage retun.
> objMailMsg.IsBodyHtml = true;
That's because you're using HTML format - \r\n means nothing to HTML...
> objMailMsg.Body = "This the first line \r\n and this is the second line";
objMailMsg.Body = "This the first line<br />and this is the second line";

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net