Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Setting HTML attachment to an email programatically
Message
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Setting HTML attachment to an email programatically
Miscellaneous
Thread ID:
00595535
Message ID:
00595535
Views:
69
I'm using the following procedure to send emails

PROCEDURE SendEmail
PARAMETERS pToWhom, pTitle, pBody
oOutlook = GetObject(,"Outlook.Application")
oMailItem = oOutlook.CreateItem(0)
oMailItem.To = pToWhom
oMailItem.Subject = pTitle
oMailItem.Body = pBody
oMailItem.Save()
oMailItem.Send()
Release.oMailItem
Release.oOutlook
RETURN

But my client wants all his emails to be sent with his company HTML Logo

Is there any way to attach an HTML document to an email and have show within the email?
Regards

Tony Millard
Next
Reply
Map
View

Click here to load this message in the networking platform