Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to email msgs as HTML-type emails in Outlook
Message
De
26/01/2002 20:50:28
Eugenio Casal
Futura Tecnologia Informação Consult Ltd
São Paulo, Brésil
 
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Divers
Thread ID:
00611070
Message ID:
00611182
Vues:
39
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.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform