How to send a secured (blast) email to thousands users in php?

前端 未结 7 1838
轮回少年
轮回少年 2020-12-09 07:09

If you are going to send emais to 3000++ users. Will you still use php mail function? I heard, it was not secured enough. How do I send a secured blast emails? I dont want t

7条回答
  •  遥遥无期
    2020-12-09 08:02

    The best method I've found for large lists is to use PEAR Mail in conjunction with Mail_Queue. Essentially, the messages get queued for delivery (stored as records in a MySQL database) and then a cron job runs periodically throughout the night to send them in manageable batches (using php CLI).

提交回复
热议问题