Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using Outlook Email
Message
 
To
17/08/2004 14:49:12
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00933900
Message ID:
00933902
Views:
20
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