Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Automating Outlook Express
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00327098
Message ID:
00327496
Views:
28
* Create an instance of outlook
oOutlook = CREATEOBJECT("Outlook.Application")

* Create a new mail message item.
oEMail = oOutlook.CreateItem(0)

WITH oEMail

*Add the subject of the mail message.
.Subject = "Training Information for October 1997"

*Create some body text.
.Body = "This is the email's body"

*Add a recipient
.Recipients.Add("kmarois@cts.com")

*Add an attachment
.Attachments.Add("c:\somefile.txt")

*Send the message.
.Send

ENDWITH
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform