/var/www/(Del)hsihk.com/wp-content/plugins/woocommerce/templates/emails/plain/customer-invoice.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
 * Customer invoice email (plain text)
 *
 * @author        WooThemes
 * @package        WooCommerce/Templates/Emails/Plain
 * @version        2.2.0
 */
if ( ! defined'ABSPATH' ) ) exit; // Exit if accessed directly

echo $email_heading "\n\n";

if ( 
$order->has_status'pending' ) )
    echo 
sprintf__'An order has been created for you on %s. To pay for this order please use the following link: %s''woocommerce' ), get_bloginfo'name' ), $order->get_checkout_payment_url() ) . "\n\n";

echo 
"****************************************************\n\n";

do_action'woocommerce_email_before_order_table'$order$sent_to_admin$plain_text );

echo 
sprintf__'Order number: %s''woocommerce'), $order->get_order_number() ) . "\n";
echo 
sprintf__'Order date: %s''woocommerce'), date_i18nwc_date_format(), strtotime$order->order_date ) ) ) . "\n";

do_action'woocommerce_email_order_meta'$order$sent_to_admin$plain_text );

echo 
"\n";

switch ( 
$order->get_status() ) {
    case 
"completed" :
        echo 
$order->email_order_items_table$order->is_download_permitted(), falsetrue''''true );
    break;
    case 
"processing" :
        echo 
$order->email_order_items_table$order->is_download_permitted(), truetrue''''true );
    break;
    default :
        echo 
$order->email_order_items_table$order->is_download_permitted(), truefalse''''true );
    break;
}

echo 
"----------\n\n";

if ( 
$totals $order->get_order_item_totals() ) {
    foreach ( 
$totals as $total ) {
        echo 
$total['label'] . "\t " $total['value'] . "\n";
    }
}

echo 
"\n****************************************************\n\n";

do_action'woocommerce_email_after_order_table'$order$sent_to_admin$plain_text );

echo 
apply_filters'woocommerce_email_footer_text'get_option'woocommerce_email_footer_text' ) );