我正在使用一个插件,它允许您向大量人发送电子邮件x
。您所要做的就是输入他们的“姓名”和“电子邮件地址”。这些条目分别命名为friend_name[0]
& friend_email[0]
。有用于添加和删除输入字段的+
&按钮。-
中的数字$key
相对于字段数上下波动。我已确认$keys
报名表上的所有更改。
当表单提交并通过循环处理时,所有电子邮件都会发送,但只会发送到最后输入的电子邮件。因此,如果我输入 5 个姓名和 5 封电子邮件,他们会发送以下数据:
姓名: John Doe 1 电子邮件: JohnDoe5@gmail.com
姓名: John Doe 2 电子邮件: JohnDoe5@gmail.com
姓名: John Doe 3 电子邮件: JohnDoe5@gmail.com
姓名: John Doe 4 电子邮件: JohnDoe5@gmail.com
姓名: John Doe 5 电子邮件: JohnDoe5@gmail.com
这是循环:
function invfr_sendmail() {
$post = ( !empty( $_POST ) ) ? true : false;
if( $post ) {
$subject = invfr_get_settings( 'subject' );
$message = invfr_get_settings( 'message' );
$friends = $_POST['friend_email'];
$headers = "From:" . $_POST['user_name'] . " <" . $_POST['user_email']. ">" . "\r\n";
$errors = array();
foreach ( $friends as $key => $friend ) {
$name = stripslashes( $_POST['friend_name'][$key] );
$email = trim( $_POST['friend_email'][$key] );
// Check name
if( !$name )
$errors[] = '#friend_name-' . $key;
if( !$email )
$errors[] = '#friend_email-' . $key;
if( $email && !is_email( $email ) )
$errors[] = '#friend_email-' . $key;
}
// send email
if( !$errors ) {
foreach ( $friends as $key => $friend )
$mail = wp_mail( $email, invfr_tokens_replacement( $subject, $_POST, $key ), invfr_tokens_replacement( $message, $_POST, $key ), invfr_tokens_replacement( $headers, $_POST, $key ) );
if( $mail )
echo 'sent';
}