Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using Outlook Email
Message
From
18/08/2004 09:50:14
 
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00933900
Message ID:
00934096
Views:
35
Marat,

This works great. How can I find a list of all available methods for the Outlook object. There could be lots of handy stuff there. Also, can Outlook Express be handled like this?

Thanks,
Allen

>Try this approach:
>
> loOutLook = CREATEOBJECT('Outlook.Application')
>
> loOutLookItem = loOutLook.CreateItem(0)
> loOutLookItem.Cc = "Send Cc"
> loOutLookItem.TO = "Send To"
> loOutLookItem.Subject = "Subject"
> loOutLookItem.Body = "Body"
>
> lcExportFile = "File to be sent"
>
>*-- You may send it:
>*-- As Attachment
> loOutLookItem.Attachments.ADD(lcExportFile)
>
>*-- Or As a body
> loOutLookItem.HtmlBody = FILETOSTR(lcExportFile)
>
>
>*-- Before To send:
>*-- Display Before EMail
> loOutLookItem.DISPLAY()
>
>*-- Or JustSend
> loOutLookItem.SEND()
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform