我在 WooCommerce 中发送自定义电子邮件时遇到问题。
这是错误:
致命错误:无法
在第 548 行的 /home/wp-content/themes/structure/functions.php 中使用 WC_Order 类型的对象作为数组
除了标准的订单确认电子邮件之外,我的客户希望在每次客户订购和付款时发送自定义电子邮件。
这是我的代码:
$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。