Forum Moderators: open
I'm working on a system that among other things will send email to about 200 people. I was thinking about using regular CDONTS and looping to sent the email to 200 people. I'm concerned that this will create some sort of a threading problems or overload the server...
What's the best solution to send the same email to multiple people? Is there a way for me to create some sort of a delay in the loop and send one email every 100 miliseconds or something like that? I also considered redirection to the same page - sending emails one by one... but that would be 200 redirections... it may look a little weird to the users.
Any ideas? Thanks!
I loop through my list of addresses and send the email to the smtp server via queue (the spelling might be incorrect, but you get the point). Doing it this way, I don't need to wait for confirmation from the mail server that each email was sent before proceeding to the next email. Saves me a lot of processing time. Your loop can get on with sending your emails without stalling for a long time.
Iam not sure though if a queue is available in CDONTS (should be). I send my mails using a third party component - (not sure if Iam allowed to mention the name)