简体   繁体   中英

Problem sending emails to several recipients

I started managing a website with a member list of over 50,000 registered members.

I am having this problem:

Each time i try sending the emails, the page runs for several minutes (more than 20 minutes) and eventually ends with up 'Internal Server Error'.

Now, i do not know how many mails that were sent or if any was sent at all.

How do i send the emails:

I select all emails from the database, run a loop and send one after the other. I chose this option because:

  1. i do not want to add several emails in 'To' field, so people's privacy will be maintained.

  2. Adding the emails in Bcc will make it appear as a spam.

Please how can i handle this.

Thank You

All you need to do is break the job into manageable chunks, instead of reading in all 50,000 emails and trying to send them all.

  1. Read in only X emails from the database at a time.
  2. Send that batch of X emails individually (If X = 10 , you will send 10 separate emails).
  3. Mark each email as "sent" as soon as each email is sent, otherwise, if there is an error, you may want to increment "send attempts" on that particular email.
  4. After the X emails have been sent (or attempted), update your statistics to indicate that X emails have been sent.
  5. Go back to 1.

I suggest starting with X = 1

I did this by making a script that calls itself with the id of the user it last processed.

Eg sendmail.php will then call sendmail.php?id=1 which will then call sendmail.php?id=2 and so on.

That will fix your timeout issue.

Within the script you can echo out the results of the mail command. If its false, then you could echo out an error.

I also added a field in my user table for mail send date and time, so i could have a confirmation of where the script got to incase the browser died.

Your sql for getting the next user to send email to would then be something along the lines of

Select useremail from users where sendmaildatetime is not null limit 1

Assuming your default for the sendmaildatetime column is null.

Sorry if im not detailed enough, im writing this from my iphone and its a PITA:)

@hamlin11 response is right, if you want to manage such a big email sending you MUST do it in small chunks and manage this task as an asynchronous task.

To Manage asynchronous tasks you'll have a lot of way, a subprocess check on all your requests that some async jobs are waiting, a separate cron job, a call on a cron.php script from a crontab, even psynnott answer, with an external script relaunching himself at the end.

But you could also use the right tool for the right task, if you have some control on the system under your website. Send one simple email to a mailing list manager that would do the job for you. This would only imply you create the right user list in the mailing list manager. External mailing list manager are for example mailman or sympa . These tools contains robots that you can talk with to feed mailing list recipients.@psynnott answer can be seen as an external PHP script performing very simple mailing list manager tasks. If you want to alter content of the email depending on some user parameters you'll quite certainly have to write your own separate process managing the tasks.

But you could also search for web services handling this job for you. Spam management is a hard job and managing an official big mailer is an hard job as well, but this is not free, of course.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM