Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Html formatting in email
Message
De
21/01/2001 18:15:33
Gavin Reid
L & M Marketing Pty Ltd
Frenchs Forest, Australie
 
 
À
21/01/2001 18:01:30
Tom Gahagan
Alliance Computer Solutions
Thomaston, Georgie, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00466405
Message ID:
00466407
Vues:
11
Hi Tom,

Are you using Outlook Automation? If so, look at HTMLBODY at the online help for the Outlook Object Model.
oMailObj = CreateObject("Outlook.Application")

MailItem = oMailObj.CreateItem(0)

WITH MailItem
    .Subject = [This is the Subject]
    .Recipients.Add([someone@somewhere.com])
    .HTMLBody = [<B>This is the HTML Body.</B>]
    .Send
ENDWITH
Hope this helps,
Gavin...

>I am trying to send emails that have html formatting in the message and I've note been able to figure out how to do it. What shows up is the html tags and not the formatting that I want.
>
>So how is this done?
>
>Thanks....
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform