繁体   English   中英

根据用户角色添加附件到WooCommerce新用户注册email

[英]Add attachments based on user role to WooCommerce new user registration email

我想在WooCommerce的新用户注册邮箱中添加两个pdf文件。

因为我有两个特定的用户角色customerseller 我想向所有新卖家发送来自路径$path1$path3的两个 pdf 文件,以及来自路径$path2$path3的所有新客户两个 pdf 文件。

我在我的functions.php中试过这个。php

function attach_to_email ( $attachments, $userrole ) { 

$root = ABSPATH;
$path1 = $root . '/media/AGB H.pdf';
$path2 = $root . '/media/AGB K.pdf';
$path3 = $root . '/media/W.pdf';

if ( $userrole === 'seller' ) {
   $attachments[] = $path1;
   $attachments[] = $path3;
} else {
   $attachments[] = $path2;
   $attachments[] = $path3;
}

return $attachments;

}

add_filter( 'woocommerce_email_attachments', 'attach_to_email', 10, 2 );

在我打电话给卖家的电子邮件模板中:

do_action( 'woocommerce_email_attachments', null, 'seller' );

但是在 function 中,我总是输入 else 部分而不是 if 部分。 此外,现在所有的电子邮件都附有else-files,而不仅仅是注册电子邮件。 有任何想法吗?

要仅将附件分配给注册电子邮件,您可以使用:

  • $email_id ,这等于customer_new_account

对于链接到主题的附件路径,您可以使用:

  • get_stylesheet_directory()用于子主题
  • 父主题的get_template_directory()
  • 我还建议不要在 pdf 文件的文件名中使用空格

然后,您可以根据用户角色分配正确的附件


所以你得到:

function filter_woocommerce_email_attachments( $attachments, $email_id, $object, $email_object = null ) {
    // Use get_stylesheet_directory() for a child theme
    // Use get_template_directory() for a parent theme
    $path_1 = get_template_directory() . '/my-file-1.pdf';
    $path_2 = get_template_directory() . '/my-file-2.pdf';
    $path_3 = get_template_directory() . '/my-file-3.pdf';

    // Customer new account email
    if ( isset( $email_id ) && $email_id === 'customer_new_account' ) {         
        // Get user role(s)
        $roles = (array) $object->roles;
        
        // Seller
        if ( in_array( 'seller', $roles ) ) {
            $attachments[] = $path_1;
            $attachments[] = $path_3;           
        // Customer
        } elseif ( in_array( 'customer', $roles ) ) {
            $attachments[] = $path_2;
            $attachments[] = $path_3;
        }
    }
    
    return $attachments;
}
add_filter( 'woocommerce_email_attachments', 'filter_woocommerce_email_attachments', 10, 4 );

代码进入您的活动主题的functions.php文件。 WooCommerce 5.0.0中测试

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM