php中的电子邮件队列

2022-01-21 00:00:00 email queue php

What is the most proper way to sending email of minimal 1000 or more in PHP? Any reliable email queuing technique that is capable to handle that? ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­

解决方案

You could just insert your emails into a Mail Queue database table, and have a separate process check the queue and batch send a certain number at once.

相关文章