我在WooCommerce中发送自定义电子邮件时遇到问题。
以下是错误:
致命错误:不能使用WC_Order类型的对象作为数组 第548行/home/wp-content/themes/structure/functions.php
除了标准订单确认电子邮件之外,我的客户还希望在每次客户订购和付款时发送自定义电子邮件。
这是我的代码:
$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。
答案 0 :(得分:2)
可能存在以下问题:$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 );
}
您可以在
wp_mail()
功能替换$user_email
之前通过您的电子邮件进行测试:wp_mail('your.mail@your-domain.tld', 'subject', 'This is custom email', $headers );
如果您收到邮件,则问题来自
$to_email = $order->billing_address;
。
(也可以使用woocommerce_thankyou
挂钩)。
最后,您必须在托管服务器上测试所有这些,而不是在计算机上使用localhost。在localhost上发送邮件在大多数情况下都不起作用......
答案 1 :(得分:1)
致命错误:无法使用WC_Order类型的对象作为数组 第548行/home/wp-content/themes/structure/functions.php
这意味着$object
是一个对象,您需要使用对象表示法,例如$object->billing_address
而不是数组表示法$object['billing_address']
。当您通过__get()
类的魔术WC_Order
方法调用它时,将定义帐单地址对象属性,这与上面的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' );