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
: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