user22
user22

Reputation: 1259

how can i put delay in PHP mailer for sending mass emails

I have the limit that i cant send more than 5 emails per second.

I am using PHPMailer 5.2.6

https://github.com/PHPMailer/PHPMailer/

Is there any way i can put 1 sec delay after 5 emails

I am using sendmail in PHP script and use cron job to send emails

Upvotes: 0

Views: 1149

Answers (1)

Nightmare
Nightmare

Reputation: 251

Use sleep(1) in your loop to put 1 sec delay

Upvotes: 1

Related Questions