Heim >Backend-Entwicklung >PHP-Tutorial >submail群发邮件疑问

submail群发邮件疑问

WBOY
WBOYOriginal
2016-06-06 20:29:501438Durchsuche

因为业务涉及群发邮件(系统通知类),发送单个邮件没有问题。但群发就出问题了。
根据官方文档,使用send API时,参数addto:联系人地址。多人采用逗号隔开的形式。
1.通过读取数据库中的用户email地址,通过explode(',',$useremailarr)将用户地址处理成逗号隔开的字符串? 使用上传时,返回203错误
2.查看php sdk包时,demo中的mailsenddemo.php 中,调用lib/mailsend.php中的AddTo方法,在bulidRequest(),foreach遍历$this->to,问题1中传递的是个字符串,这里foreach遍历处理后的数据是否正确?

<code></code>

回复内容:

因为业务涉及群发邮件(系统通知类),发送单个邮件没有问题。但群发就出问题了。
根据官方文档,使用send API时,参数addto:联系人地址。多人采用逗号隔开的形式。
1.通过读取数据库中的用户email地址,通过explode(',',$useremailarr)将用户地址处理成逗号隔开的字符串? 使用上传时,返回203错误
2.查看php sdk包时,demo中的mailsenddemo.php 中,调用lib/mailsend.php中的AddTo方法,在bulidRequest(),foreach遍历$this->to,问题1中传递的是个字符串,这里foreach遍历处理后的数据是否正确?

<code></code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:thinkphp3.2建立全局控制器Nächster Artikel:Laravel Elixir怎么安装