Click to See Complete Forum and Search --> : Outlook and ASP


kevind23
06-18-2005, 09:38 PM
I'm looking for a way to open Outlook with a new HTML mail message using an ASP script. (Background info: need an advanced HTML message to be sent using Outlook; I've been told you can do this easily by using ASP...) I've looked at a bunch of sites but all only allow you to send the message, not edit it in Outlook. Please help!!

:confused: Kevin Dodge

PS--Would something along the lines of this work


Dim Outlook
Set Outlook = CreateObject("Outlook.Application")
Dim Message
Set Message = Outlook.CreateItem(olMailItem)
with Message

.Body = HTMLBody

End With

HaganeNoKokoro
06-18-2005, 09:51 PM
I'm not understanding why the message must be edited in Outlook. I'm pretty sure it can't be done by ASP. Are you trying to make a script that opens outlook on the client's machine? I'm pretty sure that can't be done either.