2012-09-17 00:53:17 +00:00
< ? php
/**
* Customer completed order email ( plain text )
*
* @ author WooThemes
* @ package WooCommerce / Templates / Emails / Plain
2015-05-17 15:17:16 +00:00
* @ version 2.3 . 0
2012-09-17 00:53:17 +00:00
*/
2014-09-22 16:31:03 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2012-09-17 00:53:17 +00:00
2015-02-19 13:57:20 +00:00
echo " = " . $email_heading . " = \n \n " ;
2012-09-17 00:53:17 +00:00
2012-11-27 16:22:47 +00:00
echo sprintf ( __ ( " Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference: " , 'woocommerce' ), get_option ( 'blogname' ) ) . " \n \n " ;
2012-09-17 00:53:17 +00:00
2015-02-19 13:57:20 +00:00
echo " =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= \n \n " ;
2012-09-17 00:53:17 +00:00
2014-01-08 15:04:49 +00:00
do_action ( 'woocommerce_email_before_order_table' , $order , $sent_to_admin , $plain_text );
2012-09-17 00:53:17 +00:00
2015-02-19 13:57:20 +00:00
echo strtoupper ( sprintf ( __ ( 'Order number: %s' , 'woocommerce' ), $order -> get_order_number () ) ) . " \n " ;
echo date_i18n ( __ ( 'jS F Y' , 'woocommerce' ), strtotime ( $order -> order_date ) ) . " \n " ;
2012-09-17 00:53:17 +00:00
2014-01-08 15:04:49 +00:00
do_action ( 'woocommerce_email_order_meta' , $order , $sent_to_admin , $plain_text );
2012-09-17 00:53:17 +00:00
echo " \n " . $order -> email_order_items_table ( true , false , true , '' , '' , true );
2015-02-19 13:57:20 +00:00
echo " ========== \n \n " ;
2012-09-17 00:53:17 +00:00
if ( $totals = $order -> get_order_item_totals () ) {
foreach ( $totals as $total ) {
echo $total [ 'label' ] . " \t " . $total [ 'value' ] . " \n " ;
}
}
2015-02-19 13:57:20 +00:00
echo " \n =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= \n \n " ;
2012-09-17 00:53:17 +00:00
2014-01-08 15:04:49 +00:00
do_action ( 'woocommerce_email_after_order_table' , $order , $sent_to_admin , $plain_text );
2012-09-17 00:53:17 +00:00
2014-10-08 21:47:50 +00:00
do_action ( 'woocommerce_email_customer_details' , $order , $sent_to_admin , $plain_text );
2012-09-17 00:53:17 +00:00
2015-02-19 13:57:20 +00:00
echo " \n =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= \n \n " ;
2012-09-17 00:53:17 +00:00
2014-09-22 16:31:03 +00:00
echo apply_filters ( 'woocommerce_email_footer_text' , get_option ( 'woocommerce_email_footer_text' ) );