Woocommerce密件抄送所有邮件

时间:2018-10-22 07:22:50

标签: wordpress email events woocommerce bcc

我正在尝试将密件抄送添加到woocommerce / wp发送的每个邮件中。我尝试使用在Web和Stackoverflow上找到的其他解决方案,并将片段添加到我正在使用的主题的functions.php中:

add_filter( 'woocommerce_email_headers', 'add_bcc_to_wc_admin_new_order', 10, 3 );
function add_bcc_to_wc_admin_new_order( $headers = '', $id = '', $wc_email = array() ) {
    if ( $id == 'new_order' ) {
        $headers .= "Bcc: my@mail.net\r\n";
    }
return $headers;
}

add_filter( 'woocommerce_email_headers', 'add_bcc_all_emails', 10, 2);

function add_bcc_all_emails($headers, $object) {

    $headers = array();
    $headers[] = 'Bcc: my@mail.net';
    $headers[] = 'Content-Type: text/html';

    return $headers;
}

add_filter('wp_mail','custom_mails', 10,1);

function custom_mails($args){
    $bcc_email = sanitize_email('my@mail.net');

    if (is_array($args['headers'])){
        $args['headers'][] = 'Bcc: '.$bcc_email ;
    }
    else{
        $args['headers'] .= 'Bcc: '.$bcc_email."\r\n";
    }

    return $args;
}

我正在使用“活动日历”,所以我也尝试了以下方法:

add_action( 'event_tickets_rsvp_tickets_generated', 'tribe_tickets_cc_organizer', 10, 3 );

function tribe_tickets_cc_organizer( $order_id = null, $post_id = null, $attendee_order_status = null ) {
    $to = tribe_get_organizer_email( $post_id, false );
    // bail if there's no valid email for the organizer
    if ( ! is_email( $to ) ) return;
        $event_name        = get_the_title( $post_id );
        $site_name         = get_bloginfo( 'name' );
        $attendee_list_url = admin_url( 'edit.php?post_type=tribe_events&page=tickets-attendees&event_id=' . $post_id ); 
        $content     = '<a href="' . esc_url( $attendee_list_url ) . '" style="color: #000; font-family: sans-serif;">Check the event attendee list</a>';
        $headers     = array( 'Content-type: text/html' );
        $subject     = sprintf( __( 'Your event %1$s has new attendee(s) - %2$s', 'tribe-extension' ), $event_name, $site_name );
        wp_mail( $to, $subject, $content, $headers);
    }

add_action( 'event_ticket_woo_attendee_created', 'tribe_woo_compat_cc', 10, 4 );

function tribe_woo_compat_cc ( $attendee_id, $event_id, $order, $product_id ) {
    tribe_tickets_cc_organizer( null, $event_id );
}

所有主题均无法正常工作。他们忽略了密件抄送,然后再次发送所有电子邮件,因此管理员和用户都会收到两次邮件。但是添加的密件抄送邮件没有收到一封邮件。我不知道为什么这不起作用。有人有主意吗?

谢谢。

3 个答案:

答案 0 :(得分:0)

也许您可以尝试以下方法:

function add_bcc_all_emails( $headers, $object ) {

    $headers = array( 
         $headers,
         'Bcc: Me <my@mail.net>' ."\r\n",
    );

    return $headers;
}
add_filter( 'woocommerce_email_headers', 'add_bcc_all_emails', 10, 2 );

答案 1 :(得分:0)

要将密件抄送发送到所有WooCommerce电子邮件:

  • 从当前主题的functions.php文件中删除以前添加的代码段
  • 在当前主题的functions.php文件中添加以下代码段

add_filter( 'woocommerce_email_headers', 'lh_wc_add_bcc_email', 10, 2 );

function lh_wc_add_bcc_email( $headers, $email ) {

    $headers .= 'BCC: Your name <you@email.com>' . "\r\n"; //replace 'Your name' with your name and 'you@email.com' with your email address

    return $headers;
}

或者您可以使用此插件: CC & BCC for Woocommerce Order Emails

答案 2 :(得分:0)

对于无代码解决方案,请尝试使用Post SMTP插件来处理您的电子邮件。在“设置/消息”下,对于从WP发出的所有电子邮件(包括WooCommerce),都有一个“密件抄送”选项。