/var/www/(Del)hsihk.com/wp-content/plugins/woocommerce/templates/emails/plain/admin-new-order.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
/**
 * Admin new order email (plain text)
 *
 * @author        WooThemes
 * @package     WooCommerce/Templates/Emails/Plain
 * @version     2.0.0
 */
if ( ! defined'ABSPATH' ) ) exit; // Exit if accessed directly

echo $email_heading "\n\n";

echo 
sprintf__'You have received an order from %s. Their order is as follows:''woocommerce' ), $order->billing_first_name ' ' $order->billing_last_name ) . "\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 link: %s''woocommerce'), admin_url'post.php?post=' $order->id '&action=edit' ) ) . "\n";
echo 
sprintf__'Order date: %s''woocommerce'), date_i18n__'jS F Y''woocommerce' ), strtotime$order->order_date ) ) ) . "\n";

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

echo 
"\n" $order->email_order_items_tablefalsetrue''''''true );

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 
__'Customer details''woocommerce' ) . "\n";

if ( 
$order->billing_email )
    echo 
__'Email:''woocommerce' ); echo $order->billing_email "\n";

if ( 
$order->billing_phone )
    echo 
__'Tel:''woocommerce' ); ?> <?php echo $order->billing_phone "\n";

wc_get_template'emails/plain/email-addresses.php', array( 'order' => $order ) );

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

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