K
|
kohle 4/5/2022 |
Hi, if the question is runner_mail can send 5000 emails. I think yes. I dont send 5000 but it works in my case with less emails. For ex. google as smtp provider: The problem is what your provider allows. rgs |
J
|
Jan author 4/5/2022 |
Thank you for the reply. I'll contact my provider, but I'm going to make an adjustment to send the bulk mail in packets (eg 40 emails per packet), so I want to build in the code for a while (eg 40 emails every 5 seconds). |
![]() |
Admin 4/5/2022 |
You need to use a specialized email sending service for this purpose. Gmail won't let you send more than 500 emails a day and other email providers too. If you found an email provider that allows sending bulk emails you need to build a system to send bulk emails properly. This is not a code question but more like infrastructre question. You will need to store all emails before they sent in a separate table, send emails in batches and mark those emails that were sent already. If you don't know how to build a proper system like this you need to hire someone who does. |
J
|
Jan author 4/5/2022 |
Thanks for the info, I'm going to use the mailchimp api |