Merge pull request #9485 from helgatheviking/email-ids-on-hooks
pass email object to email templates and template hooks
This commit is contained in:
commit
798cf9a50b
|
@ -80,7 +80,8 @@ class WC_Email_Cancelled_Order extends WC_Email {
|
|||
'order' => $this->object,
|
||||
'email_heading' => $this->get_heading(),
|
||||
'sent_to_admin' => true,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -108,7 +108,8 @@ class WC_Email_Customer_Completed_Order extends WC_Email {
|
|||
'order' => $this->object,
|
||||
'email_heading' => $this->get_heading(),
|
||||
'sent_to_admin' => false,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -114,7 +114,8 @@ class WC_Email_Customer_Invoice extends WC_Email {
|
|||
'order' => $this->object,
|
||||
'email_heading' => $this->get_heading(),
|
||||
'sent_to_admin' => false,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -80,7 +80,8 @@ class WC_Email_Customer_New_Account extends WC_Email {
|
|||
'blogname' => $this->get_blogname(),
|
||||
'password_generated' => $this->password_generated,
|
||||
'sent_to_admin' => false,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -93,7 +93,8 @@ class WC_Email_Customer_Note extends WC_Email {
|
|||
'email_heading' => $this->get_heading(),
|
||||
'customer_note' => $this->customer_note,
|
||||
'sent_to_admin' => false,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -77,7 +77,8 @@ class WC_Email_Customer_Processing_Order extends WC_Email {
|
|||
'order' => $this->object,
|
||||
'email_heading' => $this->get_heading(),
|
||||
'sent_to_admin' => false,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -142,7 +142,8 @@ class WC_Email_Customer_Refunded_Order extends WC_Email {
|
|||
'partial_refund' => $this->partial_refund,
|
||||
'email_heading' => $this->get_heading(),
|
||||
'sent_to_admin' => false,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -85,7 +85,8 @@ class WC_Email_Customer_Reset_Password extends WC_Email {
|
|||
'reset_key' => $this->reset_key,
|
||||
'blogname' => $this->get_blogname(),
|
||||
'sent_to_admin' => false,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -86,7 +86,8 @@ class WC_Email_New_Order extends WC_Email {
|
|||
'order' => $this->object,
|
||||
'email_heading' => $this->get_heading(),
|
||||
'sent_to_admin' => true,
|
||||
'plain_text' => false
|
||||
'plain_text' => false,
|
||||
'email' => $this
|
||||
) );
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php printf( __( 'The order #%d from %s has been cancelled. The order was as follows:', 'woocommerce' ), $order->get_order_number(), $order->get_formatted_billing_full_name() ); ?></p>
|
||||
|
||||
|
@ -51,10 +51,10 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
|
|||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, true, false ); ?>
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, true, false, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, true, false ); ?>
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, true, false, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,11 +21,11 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php printf( __( 'You have received an order from %s. The order is as follows:', 'woocommerce' ), $order->get_formatted_billing_full_name() ); ?></p>
|
||||
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, true, false ); ?>
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, true, false, $email ); ?>
|
||||
|
||||
<h2><a class="link" href="<?php echo admin_url( 'post.php?post=' . $order->id . '&action=edit' ); ?>"><?php printf( __( 'Order #%s', 'woocommerce'), $order->get_order_number() ); ?></a> (<?php printf( '<time datetime="%s">%s</time>', date_i18n( 'c', strtotime( $order->order_date ) ), date_i18n( wc_date_format(), strtotime( $order->order_date ) ) ); ?>)</h2>
|
||||
|
||||
|
@ -56,10 +56,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, true, false ); ?>
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, true, false, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, true, false ); ?>
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, true, false, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,11 +21,11 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php printf( __( "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:", 'woocommerce' ), get_option( 'blogname' ) ); ?></p>
|
||||
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<h2><?php printf( __( 'Order #%s', 'woocommerce' ), $order->get_order_number() ); ?></h2>
|
||||
|
||||
|
@ -56,10 +56,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text , $email); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<?php if ( $order->has_status( 'pending' ) ) : ?>
|
||||
|
||||
|
@ -29,7 +29,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<h2><?php printf( __( 'Order #%s', 'woocommerce' ), $order->get_order_number() ); ?> (<?php printf( '<time datetime="%s">%s</time>', date_i18n( 'c', strtotime( $order->order_date ) ), date_i18n( wc_date_format(), strtotime( $order->order_date ) ) ); ?>)</h2>
|
||||
|
||||
|
@ -72,8 +72,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php printf( __( "Thanks for creating an account on %s. Your username is <strong>%s</strong>.", 'woocommerce' ), esc_html( $blogname ), esc_html( $user_login ) ); ?></p>
|
||||
|
||||
|
@ -33,4 +33,4 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
<p><?php printf( __( 'You can access your account area to view your orders and change your password here: %s.', 'woocommerce' ), wc_get_page_permalink( 'myaccount' ) ); ?></p>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php _e( "Hello, a note has just been added to your order:", 'woocommerce' ); ?></p>
|
||||
|
||||
|
@ -29,7 +29,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
<p><?php _e( "For your reference, your order details are shown below.", 'woocommerce' ); ?></p>
|
||||
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<h2><?php printf( __( 'Order #%s', 'woocommerce' ), $order->get_order_number() ); ?></h2>
|
||||
|
||||
|
@ -60,10 +60,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,11 +21,11 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php _e( "Your order has been received and is now being processed. Your order details are shown below for your reference:", 'woocommerce' ); ?></p>
|
||||
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<h2><?php printf( __( 'Order #%s', 'woocommerce' ), $order->get_order_number() ); ?></h2>
|
||||
|
||||
|
@ -56,10 +56,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php
|
||||
if ( $partial_refund ) {
|
||||
|
@ -32,7 +32,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
}
|
||||
?></p>
|
||||
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<h2><?php printf( __( 'Order #%s', 'woocommerce' ), $order->get_order_number() ); ?></h2>
|
||||
|
||||
|
@ -73,10 +73,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text ); ?>
|
||||
<?php do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email ); ?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
|
||||
?>
|
||||
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading ); ?>
|
||||
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
||||
|
||||
<p><?php _e( 'Someone requested that the password be reset for the following account:', 'woocommerce' ); ?></p>
|
||||
<p><?php printf( __( 'Username: %s', 'woocommerce' ), $user_login ); ?></p>
|
||||
|
@ -33,4 +33,4 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</p>
|
||||
<p></p>
|
||||
|
||||
<?php do_action( 'woocommerce_email_footer' ); ?>
|
||||
<?php do_action( 'woocommerce_email_footer', $email ); ?>
|
||||
|
|
|
@ -24,12 +24,12 @@ echo sprintf( __( 'The order #%d from %s has been cancelled. The order was as fo
|
|||
|
||||
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo strtoupper( sprintf( __( 'Order number: %s', 'woocommerce' ), $order->get_order_number() ) ) . "\n";
|
||||
echo date_i18n( __( 'jS F Y', 'woocommerce' ), strtotime( $order->order_date ) ) . "\n";
|
||||
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n" . $order->email_order_items_table( false, true, '', '', '', true );
|
||||
|
||||
|
@ -45,9 +45,9 @@ echo "\n" . sprintf( __( 'View order: %s', 'woocommerce'), admin_url( 'post.php?
|
|||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
|
|
|
@ -25,12 +25,12 @@ echo sprintf( __( 'You have received an order from %s.', 'woocommerce' ), $order
|
|||
|
||||
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo strtoupper( sprintf( __( 'Order number: %s', 'woocommerce' ), $order->get_order_number() ) ) . "\n";
|
||||
echo date_i18n( __( 'jS F Y', 'woocommerce' ), strtotime( $order->order_date ) ) . "\n";
|
||||
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n" . $order->email_order_items_table( false, true, '', '', '', true );
|
||||
|
||||
|
@ -46,9 +46,9 @@ echo "\n" . sprintf( __( 'View order: %s', 'woocommerce'), admin_url( 'post.php?
|
|||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
|
|
|
@ -25,12 +25,12 @@ echo sprintf( __( "Hi there. Your recent order on %s has been completed. Your or
|
|||
|
||||
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo strtoupper( sprintf( __( 'Order number: %s', 'woocommerce' ), $order->get_order_number() ) ) . "\n";
|
||||
echo date_i18n( __( 'jS F Y', 'woocommerce' ), strtotime( $order->order_date ) ) . "\n";
|
||||
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n" . $order->email_order_items_table( true, false, true, '', '', true );
|
||||
|
||||
|
@ -44,9 +44,9 @@ if ( $totals = $order->get_order_item_totals() ) {
|
|||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
|
|
|
@ -26,12 +26,12 @@ if ( $order->has_status( 'pending' ) )
|
|||
|
||||
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo strtoupper( sprintf( __( 'Order number: %s', 'woocommerce' ), $order->get_order_number() ) ) . "\n";
|
||||
echo date_i18n( __( 'jS F Y', 'woocommerce' ), strtotime( $order->order_date ) ) . "\n";
|
||||
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n";
|
||||
|
||||
|
@ -57,6 +57,6 @@ if ( $totals = $order->get_order_item_totals() ) {
|
|||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) );
|
||||
|
|
|
@ -33,12 +33,12 @@ echo __( "For your reference, your order details are shown below.", 'woocommerce
|
|||
|
||||
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo strtoupper( sprintf( __( 'Order number: %s', 'woocommerce' ), $order->get_order_number() ) ) . "\n";
|
||||
echo date_i18n( __( 'jS F Y', 'woocommerce' ), strtotime( $order->order_date ) ) . "\n";
|
||||
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n" . $order->email_order_items_table( $order->is_download_permitted(), true, '', '', '', true );
|
||||
|
||||
|
@ -52,9 +52,9 @@ if ( $totals = $order->get_order_item_totals() ) {
|
|||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
|
|
|
@ -25,12 +25,12 @@ echo __( "Your order has been received and is now being processed. Your order de
|
|||
|
||||
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo strtoupper( sprintf( __( 'Order number: %s', 'woocommerce' ), $order->get_order_number() ) ) . "\n";
|
||||
echo date_i18n( __( 'jS F Y', 'woocommerce' ), strtotime( $order->order_date ) ) . "\n";
|
||||
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n" . $order->email_order_items_table( $order->is_download_permitted(), true, $order->has_status( 'processing' ), '', '', true );
|
||||
|
||||
|
@ -44,9 +44,9 @@ if ( $totals = $order->get_order_item_totals() ) {
|
|||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
|
|
|
@ -25,12 +25,12 @@ echo sprintf( __( "Hi there. Your order on %s has been refunded. Your order deta
|
|||
|
||||
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo strtoupper( sprintf( __( 'Order number: %s', 'woocommerce' ), $order->get_order_number() ) ) . "\n";
|
||||
echo date_i18n( __( 'jS F Y', 'woocommerce' ), strtotime( $order->order_date ) ) . "\n";
|
||||
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n" . $order->email_order_items_table( true, false, true, '', '', true );
|
||||
|
||||
|
@ -48,9 +48,9 @@ if ( $totals = $order->get_order_item_totals() ) {
|
|||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_after_order_table', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text );
|
||||
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
|
||||
|
||||
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
||||
|
||||
|
|
Loading…
Reference in New Issue