Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Large mailings through Outlook
Message
From
09/04/2001 15:17:25
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Large mailings through Outlook
Miscellaneous
Thread ID:
00493720
Message ID:
00493720
Views:
52
I am using Outlook to do mailings from VFP.
The following code illustrates this process.
I am wondering if anyone knows if there is a specific limit for the number of ADDs that can be processed prior to executing the SEND(). I may wish to send the same message to 100-200 recipients. Is this too much for Outlook to handle with a single SEND() ?


*
oApp = createObject("Outlook.Application")
oMail = oApp.CreateItem(0)
oMail.recipients.add("xxx@xxxx.com")
oMail.recipients.add("yyy@yyyy.com")
oMail.recipients.add("zzz@zzzz.com")

*oMail.to = cTo
oMail.subject = "Mail Mailing Test 16"
oMail.body = "This is testing Mass Mailing function. Please reply"
oMail.send()
release oApp
release oMail
return
Next
Reply
Map
View

Click here to load this message in the networking platform