Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Email attachments in VFP using an MS Outlook object
Message
From
21/01/1999 18:31:11
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Email attachments in VFP using an MS Outlook object
Miscellaneous
Thread ID:
00178788
Message ID:
00178788
Views:
58
I'm using the following code to send email from VFP 6.0 through Outlook:

oOutLookObject = CREATEOBJECT("Outlook.Application")
IF TYPE("oOutLookObject") = "O" AND !ISNULL(oOutLookObject)
oEmailItem = oOutLookObject.CreateItem(0)
WITH oEmailItem
.Body = lcBody
.To = lcTo
.Subject = lcSubject
.Importance = lnImportance
.Send
ENDWITH
ENDIF

My question is, how can I add multiple attachments to this email? Anyone know the correct syntax for that?

TIA
Next
Reply
Map
View

Click here to load this message in the networking platform