自定义电子邮件未在 WooCommerce 中完成订单发送
Custom Email is not sending on Order complete in WooCommerce
我在 WooCommerce 中发送自定义电子邮件时遇到问题。
这是错误:
Fatal error: Cannot use object of type WC_Order as array in
/home/wp-content/themes/structure/functions.php on line 548
除了标准订单确认电子邮件之外,我的客户希望在每次客户订购和付款时发送自定义电子邮件。
这是我的代码:
$order = new WC_Order( $order_id );
function order_completed( $order_id ) {
$order = new WC_Order( $order_id );
$to_email = $order["billing_address"];
$headers = 'From: Your Name <your@email.com>' . "\r\n";
wp_mail($to_email, 'subject', 'This is custom email', $headers );
}
add_action( 'woocommerce_payment_complete', 'order_completed' )
我也尝试了 "woocommerce_thankyou"
钩子而不是 "woocommerce_payment_complete"
,但仍然无法正常工作。
我用的Wordpress版本是4.5.2,WooCommerce版本是2.6.1。
可能有问题:$order->billing_address;
…所以我们可以用不同的方法获取当前用户电子邮件(不是账单或送货) wp_get_current_user();
wordpress函数。那么您的代码将是:
add_action( 'woocommerce_payment_complete', 'order_completed_custom_email_notification' )
function order_completed_custom_email_notification( $order_id ) {
$current_user = wp_get_current_user();
$user_email = $current_user->user_email;
$to = sanitize_email( $user_email );
$headers = 'From: Your Name <your@email.com>' . "\r\n";
wp_mail($to, 'subject', 'This is custom email', $headers );
}
You can test before wp_mail()
function replacing $user_email
by your email like this:
wp_mail('your.mail@your-domain.tld', 'subject', 'This is custom email', $headers );
If you get the mail, the problem was coming from $to_email = $order->billing_address;
.
(Try it also with woocommerce_thankyou
hook too).
最后一件事,您必须在托管服务器上测试所有这些,而不是在您的计算机上使用本地主机。在大多数情况下,在本地主机上发送邮件不起作用…
Fatal error: Cannot use object of type WC_Order as array in
/home/wp-content/themes/structure/functions.php on line 548
这意味着$object
是一个对象,您需要使用对象表示法,例如$object->billing_address
,而不是数组表示法$object['billing_address']
。帐单地址对象 属性 将在您通过 WC_Order
class 的魔法 __get()
方法调用时定义,这与 LoicTheAztec 上面的方法并没有太大区别。
function order_completed( $order_id ) {
$order = wc_get_order( $order_id );
$to_email = $order->billing_address;
$headers = 'From: Your Name <your@email.com>' . "\r\n";
wp_mail($to_email, 'subject', 'This is custom email', $headers );
}
add_action( 'woocommerce_payment_complete', 'order_completed' );
我在 WooCommerce 中发送自定义电子邮件时遇到问题。
这是错误:
Fatal error: Cannot use object of type WC_Order as array in
/home/wp-content/themes/structure/functions.php on line 548
除了标准订单确认电子邮件之外,我的客户希望在每次客户订购和付款时发送自定义电子邮件。
这是我的代码:
$order = new WC_Order( $order_id );
function order_completed( $order_id ) {
$order = new WC_Order( $order_id );
$to_email = $order["billing_address"];
$headers = 'From: Your Name <your@email.com>' . "\r\n";
wp_mail($to_email, 'subject', 'This is custom email', $headers );
}
add_action( 'woocommerce_payment_complete', 'order_completed' )
我也尝试了 "woocommerce_thankyou"
钩子而不是 "woocommerce_payment_complete"
,但仍然无法正常工作。
我用的Wordpress版本是4.5.2,WooCommerce版本是2.6.1。
可能有问题:$order->billing_address;
…所以我们可以用不同的方法获取当前用户电子邮件(不是账单或送货) wp_get_current_user();
wordpress函数。那么您的代码将是:
add_action( 'woocommerce_payment_complete', 'order_completed_custom_email_notification' )
function order_completed_custom_email_notification( $order_id ) {
$current_user = wp_get_current_user();
$user_email = $current_user->user_email;
$to = sanitize_email( $user_email );
$headers = 'From: Your Name <your@email.com>' . "\r\n";
wp_mail($to, 'subject', 'This is custom email', $headers );
}
You can test before
wp_mail()
function replacing$user_email
by your email like this:wp_mail('your.mail@your-domain.tld', 'subject', 'This is custom email', $headers );
If you get the mail, the problem was coming from
$to_email = $order->billing_address;
.
(Try it also withwoocommerce_thankyou
hook too).
最后一件事,您必须在托管服务器上测试所有这些,而不是在您的计算机上使用本地主机。在大多数情况下,在本地主机上发送邮件不起作用…
Fatal error: Cannot use object of type WC_Order as array in /home/wp-content/themes/structure/functions.php on line 548
这意味着$object
是一个对象,您需要使用对象表示法,例如$object->billing_address
,而不是数组表示法$object['billing_address']
。帐单地址对象 属性 将在您通过 WC_Order
class 的魔法 __get()
方法调用时定义,这与 LoicTheAztec 上面的方法并没有太大区别。
function order_completed( $order_id ) {
$order = wc_get_order( $order_id );
$to_email = $order->billing_address;
$headers = 'From: Your Name <your@email.com>' . "\r\n";
wp_mail($to_email, 'subject', 'This is custom email', $headers );
}
add_action( 'woocommerce_payment_complete', 'order_completed' );