在所有Woocommerce电子邮件通知中更改“回复”电子邮件地址

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

在Woocommerce中,我想更改应始终用作所有电子邮件通知的回复地址的电子邮件地址。

Woocommerce如何实现这一目标?

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

以下内容将更改所有电子邮件通知中的“回复”电子邮件地址(和姓名):

add_filter( 'woocommerce_email_headers', 'change_reply_to_email_address', 10, 3 );
function change_reply_to_email_address( $header, $email_id, $order ) {

    // HERE below set the name and the email address
    $reply_to_name  = 'Jack Smith';
    $reply_to_email = '[email protected]';

    // Get the WC_Email instance Object
    $email = new WC_Email($email_id);

    $header  = "Content-Type: " . $email->get_content_type() . "\r\n";
    $header .= 'Reply-to: ' . $reply_to_name . ' <' . $reply_to_email . ">\r\n";

    return $header;
}

此代码位于活动子主题(或主题)的function.php文件中。经过测试和工作。

相关:Custom "reply to" email header in Woocommerce New Order email notification

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