4
在WooCommerce中,我使用woocommerce-product-vendors作爲多供應商插件。結帳後,我收到作爲管理員一個新的訂單電子郵件通知與附件(上傳的文件)。將新訂單電子郵件通知附件添加到供應商電子郵件
但供應商收到相同的電子郵件,但沒有附件。我需要供應商也收到附件。
感謝
在WooCommerce中,我使用woocommerce-product-vendors作爲多供應商插件。結帳後,我收到作爲管理員一個新的訂單電子郵件通知與附件(上傳的文件)。將新訂單電子郵件通知附件添加到供應商電子郵件
但供應商收到相同的電子郵件,但沒有附件。我需要供應商也收到附件。
感謝
你可以試試這個代碼與woocommerce_email_recipient_new_order
過濾鉤子鉤住的自定義函數:
add_filter('woocommerce_email_recipient_new_order', 'adding_vendor_email', 10, 2);
function adding_vendor_email($recipient, $order) {
// Your code or conditions to get the vendor email (if needed)
$recipient .= ",[email protected]";
return $recipient;
}
您將需要定製此自定義掛鉤函數動態獲取的電子郵件......
代碼會出現在您的活動子主題(或主題)的function.php文件中,或者也包含在任何插件文件中。
該代碼測試和工程
你也可以使用
woocommerce_email_attachments
過濾鉤子......看到this related thread
非常感謝盧瓦克的支持我真的認識你是最棒的謝謝。 –