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

前端 未结 7 1829
轮回少年
轮回少年 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:01

    When it comes to blasting emails, 3rd party implementations are fine but really it's not difficult to write your own. Basically you need to have PHP queue blast jobs in a db and have a service or a daemon polling every so often to see if there's work to be done. If there is it will send the blast out in chunks.

    As far as "secure mail" there's really no such thing. If you need to alert users to sensitive data do what banks do. Send out an announcement telling the user simply to log into their account to view a message on the web site.

提交回复
热议问题