I'm using ASP.NET 2.0 and System.Net.Mail to send email. I want to send out both HTML and text email. The html email is always being sent as text. Instead of marking up the email, tags come across as text themselves. How can I fix this?
Diane
Diane
RE: Useing editor to send email
Re: Useing editor to send email
I have exactly the same query. From what I understand, a mail message can contain a text and HTML version - of course for e-mail programs that can render the HTML. In order to render the HTML, the HTML must be contained within <HTML> tags.
Does the editor allow you to insert HTML tags, head tags, meta tags, style tags and body tags?
Kind regards,
Mathew
Re: Useing editor to send email
message.BodyFormat = MailFormat.Html;
Re: Useing editor to send email
Re: Useing editor to send email
Re: Useing editor to send email
Re: Useing editor to send email
FCKConfig.FullPage = false ;
line 39. Looks like that would do it.
Re: Useing editor to send email