Created
May 14, 2021 06:20
-
-
Save wbcomdev/1cf10ef049b0277311ffd745ab0aeb97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Send an email each time an order with coupon(s) is completed. | |
| * The email contains coupon(s) used during checkout process. | |
| */ | |
| function wb_woo_email_order_coupons( $order_id ) { | |
| $order = new WC_Order( $order_id ); | |
| if ( $order->get_used_coupons() ) { | |
| $to = 'youremail@yourcompany.com'; | |
| $subject = 'New Order Completed'; | |
| $headers = 'From: My Name <youremail@yourcompany.com>' . "\r\n"; | |
| $message = 'A new order has been completed.\n'; | |
| $message .= 'Order ID: ' . $order_id . '\n'; | |
| $message .= 'Coupons used:\n'; | |
| foreach ( $order->get_used_coupons() as $coupon ) { | |
| $message .= $coupon . '\n'; | |
| } | |
| wp_mail( $to, $subject, $message, $headers ); | |
| } | |
| } | |
| add_action( 'woocommerce_thankyou', 'wb_woo_email_order_coupons' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment