Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Setting HTML attachment to an email programatically
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Setting HTML attachment to an email programatically
Divers
Thread ID:
00595535
Message ID:
00595535
Vues:
64
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform