Re: sending email from .NET
No, as long as you specify it as HTML format (which I see you are doing) there shouldn't be any problems..
however if your actual emailing code is working, and its only formatting that you are having an issue with, then it may be that you are rendering HTML that is not compatible with the rendering engine of your client application that is receiving the file...
I guess you will need to elaborate more, perhaps show an example.
Re: sending email from .NET
Should the email page be just the <body> of an HTML page, or a full HTML page for showing up in an email? I read it in as a string and put it into mymail.Body.
Re: sending email from .NET
Just the body I would imagine, unless you have any specific information in the head section that you need to keep.
You can do some simple testing and send different HTML emails and see which ones format properly, and which ones don't. Then compare the 2 and see what is different.
Re: sending email from .NET
Its formatting ok on most emails ( gmail, yahoo, etc) but one person is getting the email cut off halfway and another is getting bad formatting.
Re: sending email from .NET
what provider/email client do they use?
Its probably working ok in gmail and yahoo because you are visiting those sites in IE, and its IE that is doing the rendering, not the email service.
Have you looked at them in firefox to see if it works there too?
Re: sending email from .NET
Can you show us some sample HTML being generated?