Email Foramt Issues

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an App (vb.net 2005) where I will be sending emails. I will likely
default to Outlook. The emails MUST retain their formatting...especially
tables and color.

I've been using net.mail and experimented with using Outlook (via Com
reference) but can't seem to retain the formats (the table disappears).

Any suggestions?

Thanks
 
I guess you are using the Outlook.Application for your Outlook access?

If so you can do Outlook.MailItem.HTMLBody = "..."

Rick
 
yes, of course the body must be valid html or it will just display as text
since there are no tags to instruct it how to display.

Rick
 
Back
Top