Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Mass emailing
Message
From
13/12/2001 12:29:08
 
 
To
13/12/2001 11:50:24
Elyse Pomerantz
Dynamic Data Concepts, Inc.
Brooklyn, New York, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00589809
Message ID:
00593914
Views:
42
This message has been marked as the solution to the initial question of the thread.
You shouldn't have to do any thing with 'Body', and I don't think there is a 'BodyFormat' property (Outlook 2000, right?).

Can you post the code that you are trying?

On my system, the following code works (take spaces from beginning of HTML tags):
=sendSomeMail()

procedure sendSomeMail
    local oOutlook, ;
          oItem, ;
          lcHTMLSTring
      
    lcHTMLString = [< html>< body>Hello < b>world< /b>< /body>]

    oOutlook = createobject("outlook.application")
    oitem = oOutlook.createitem(0)
    oitem.recipients.add("somebody@somewhere.com")
    oitem.subject =  "Test HMTL message"
    oitem.HTMLBody = lcHTMLString  
    oitem.display()
    oitem = NULL
    oOutlook = NULL
endproc
>I'm still trying to get this to work. I assume the properties I'm dealing with are Body,HTMLBody, and BodyFormat. One problem is that I don't know the constants for BodyFormat. I have a simple HTML file and when I use other utilities (wwIPStuff) to send a message, the HTML works. But with Outlook I still see just the code. Any more ideas?
>
>
Steve Gibson
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform