使用wp_mail()的多个电子邮件收件人

时间:2016-12-06 作者:Noobie

我想在数组外定义多个收件人的电子邮件地址。喜欢

$adminmail = get_option(admin_email);
$adminmail2 = like an email address;
$multiple_recipients = array($adminmail,$adminmail2);
$subj = \'The email subject\';
$body = \'This is the body of the email\';
wp_mail( $multiple_recipients, $subj, $body );
这可能吗?

1 个回复
SO网友:Benoti

是的,这是可能的,$to 接受要发送消息的电子邮件地址的数组或逗号分隔列表。

你可以阅读更多here, 关于可添加发件人、抄送、内容类型和字段的可选标头参数。

如果您想自动发送WordPress管理通知,可以查看this.

相关推荐

Cron not sending wp-mail()

我对cron计划功能有问题,它不想用wp_mail() 作用This is my code:它被放置在函数中。php<?php add_filter(\'cron_schedules\', \'add_review_invites_schedule\'); function add_review_invites_schedule($schedules){ $schedules[\'send_review_invites_interva