Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Large mailings through Outlook
Message
De
09/04/2001 15:17:25
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Large mailings through Outlook
Divers
Thread ID:
00493720
Message ID:
00493720
Vues:
51
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform