当我们的WordPress安装同时发送大量电子邮件时,其中一些会被删除。当我们将取消订阅链接附加到每封电子邮件的底部时,每个链接都必须单独发送。有一个wp_mail过滤器,如下所示。
如果我们只发送少量电子邮件,他们通常会毫无问题地发送邮件,但在发送100封或更多邮件时,问题会变得更加明显。在过去的105个电子邮件中,发送的总数为94,然后96个看似随机的消失,如果我们让循环等待发送电子邮件之间的间隔,他们都会被发送。这是一个解决方案,但我们想知道解决问题的方法是什么,并允许电子邮件以系统允许的速度运行。
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div align="center">
<img src="https://d2slcw3kip6qmk.cloudfront.net/marketing/press/images/template-gallery/newsletter-classroom@2x.jpeg" alt="Smiley face" height="100%" width="80%" usemap="#Map">
</div>
<map id="Map">
<area shape="rect" coords="14, 13, 460, 162" target="_blank" href="http://securitylinkindia.com/may17report.html" title="new" alt="">
<area shape="rect" coords="18, 189, 154, 604" target="_blank" href="http://securitylinkindia.com/may17whitePaper.html" title="new" alt="">
<area shape="rect" coords="166, 190, 308, 441" target="_blank" href="http://securitylinkindia.com/may17dahua.html" title="new" alt="">
<area shape="rect" coords="322, 190, 462, 438" target="_blank" href="http://securitylinkindia.com/may17report.html" title="new" alt="">
<area shape="rect" coords="168, 455, 461, 603" target="_blank" href="http://securitylinkindia.com/may17whitePaper.html" title="new" alt="">
</map>
</body>
</html>
答案 0 :(得分:0)
不是以此批量发送电子邮件,而是将其插入到cron作业中。 使用cron作业发送电子邮件。因此,如果您错过任何电子邮件,那么将在下次尝试时完成。