Click to See Complete Forum and Search --> : convert email to html
Tidzgr8
01-09-2003, 04:11 PM
I am trying to find something that can convert email to html. I have a user that wants to be able to click on a link and open up email. I know that one exists in Perl by a company called Monharc or something like that. I don't know if this exists, but thought I would ask.
Nicodemas
01-10-2003, 03:20 AM
Are you talking about sending emails in HTML format? If you are using CDONTS the answer would be to include this:
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
to, from values...
objNewMail.BodyFormat = 0
objNewMail.MailFormat = 0
objNewMail.Send
vishu_gupt
01-10-2003, 05:11 AM
HI,
If your purpose is to have emails in HTML format instead of plain text then you can use CODNTS or any third party components like ASP-Email. These have options to send email in HTML or text format.
Tidzgr8
01-10-2003, 07:35 AM
I am sorry I didn't make myself very clear. I have a folder that has emails in it. I know that there is a Perl converter out there that will convert the emails into html. I want anyone that comes to my site to be able to click on a link and the email ( now html ) will open up for them. Currently, it would only work if they have Microsoft Outlook on their machine, Thanks for the input anyway.