Plugin not sending mails in queue
-
Hello,
Thanks for a powerful plugin. I have installed the plugin on my site and I want to send emails to all users using the queueing system. There are about 1300 user accounts on the site.
I do this to add emails to the queue.
$users = get_users(); // Array of user objects (about 1300 users) foreach ( $users as $user ) { wp_mail($user->user_email, $subject, $body, $headers); }
When I do this, all emails are sent to the queue, but it doesn’t send anything, it just stops. Is there a limit of how many emails can be added to the queue?
I have also tried adding a much smaller list of emails (about 5), and when I do this the emails are sent out right away.
What am I doing wrong? Is there a way to jumpstart the sending process?
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Plugin not sending mails in queue’ is closed to new replies.