Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Html formatting in email
Message
From
21/01/2001 18:15:33
Gavin Reid
L & M Marketing Pty Ltd
Frenchs Forest, Australia
 
 
To
21/01/2001 18:01:30
Tom Gahagan
Alliance Computer Solutions
Thomaston, Georgia, United States
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00466405
Message ID:
00466407
Views:
10
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....
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform