Greetings.
It is necessary to implement a daily mailing of ~ 100K letters.
- What problems may arise?
- What is the likelihood that emails will end up in spam?
- Will the mail server survive?
Sending via mail()
.
Here you need to think a little ... Here, for example, a PHP script can be executed after refreshing the page for a longer time than the specified execution limit in the Apache. From this it follows that 100K emails will definitely not be able to be sent in one update. To do this, you need to create something like this script:
Source: https://ru.stackoverflow.com/questions/81299/
All Articles