Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to email msgs as HTML-type emails in Outlook
Message
From
26/01/2002 20:50:28
Eugenio Casal
Futura Tecnologia Informação Consult Ltd
São Paulo, Brazil
 
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
00611070
Message ID:
00611182
Views:
38
This message has been marked as the solution to the initial question of the thread.
Chris,

Here is a code example using Outlook.
oOutlookApp = createobject('outlook.application')
oMailItem = oOutlookApp.createitem(0)

with oMailItem
	.HTMLBody = "Here comes the HTML code"
	.subject = "Here comes the subject"
	.to = "here comes the e-mail address list"
	.send()
endwith
It´s possible to find a CDO example in the url I mentioned before.

I hope this can help you.
Previous
Reply
Map
View

Click here to load this message in the networking platform