将客户电子邮件地址添加到WooCommerce中的新帐户电子邮件通知

问题描述 投票:3回答:1

我想在“新帐户”电子邮件中插入客户电子邮件地址。

到目前为止,我尝试在钩子中使用$user_email而不是$user_login$order->billing_email但每次都显示空白。

php wordpress woocommerce orders email-notifications
1个回答
2
投票

更新:您可以使用钩在woocommerce_email_header动作钩子中的自定义函数:

add_action( 'woocommerce_email_header', 'add_customer_billing_email', 20, 2 );
function add_customer_billing_email( $email_heading, $email )
{
    // Only for  "Customer new account" email notifications
    if( $email->id != 'customer_new_account' ) return;

    // Get user billing email
    global $user_login;
    $user = get_user_by('login', $user_login );
    $email = $user->billing_email;

    // HTML Output
    echo '<p>'.__('Billing email').': <a href="mailto:'.$email.'">'.$email.'</a></p>';
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

经过测试和工作。


或者您可以在模板emails/customer-new-account.php中插入以下代码,在您选择的位置:

<?php
    // Get user billing email
    $user = get_user_by('login', $user_login );
    $email = $user->billing_email;

    // HTML Output
    echo '<p>'.__('Billing email').': <a href="mailto:'.$email.'">'.$email.'</a></p>';
?>

经过测试和工作。

官方文件:Overriding WooCommerce templates via a theme

© www.soinside.com 2019 - 2024. All rights reserved.