54 lines
2.1 KiB
PHP
54 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Admin new renewal order email
|
|
*
|
|
* Based on the WooCommerce core admin-new-order.php template.
|
|
*
|
|
* @package WooCommerce_Subscriptions/Templates/Emails
|
|
* @version 7.3.0 - Updated for WC core email improvements.
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
$email_improvements_enabled = wcs_is_wc_feature_enabled( 'email_improvements' );
|
|
|
|
/*
|
|
* @hooked WC_Emails::email_header() Output the email header
|
|
*/
|
|
do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
|
|
|
<?php echo $email_improvements_enabled ? '<div class="email-introduction">' : ''; ?>
|
|
<?php /* translators: $1: customer's billing first name and last name */ ?>
|
|
<p><?php printf( esc_html_x( 'You have received a subscription renewal order from %1$s. Their order is as follows:', 'Used in admin email: new renewal order', 'woocommerce-subscriptions' ), esc_html( $order->get_formatted_billing_full_name() ) ); ?></p>
|
|
<?php echo $email_improvements_enabled ? '</div>' : ''; ?>
|
|
|
|
<?php
|
|
/**
|
|
* @hooked WC_Subscriptions_Email::order_details() Shows the order details table.
|
|
* @hooked WC_Subscriptions_Email::order_download_details() Shows the order downloads table.
|
|
* @since 1.0.0 - Migrated from WooCommerce Subscriptions v2.1.0
|
|
*/
|
|
do_action( 'woocommerce_subscriptions_email_order_details', $order, $sent_to_admin, $plain_text, $email );
|
|
|
|
/*
|
|
* @hooked WC_Emails::order_meta() Shows order meta data.
|
|
*/
|
|
do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
|
|
|
|
/*
|
|
* @hooked WC_Emails::customer_details() Shows customer details
|
|
* @hooked WC_Emails::email_address() Shows email address
|
|
*/
|
|
do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
|
|
|
|
/**
|
|
* Show user-defined additional content - this is set in each email's settings.
|
|
*/
|
|
if ( $additional_content ) {
|
|
echo $email_improvements_enabled ? '<table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td class="email-additional-content">' : '';
|
|
echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) );
|
|
echo $email_improvements_enabled ? '</td></tr></table>' : '';
|
|
}
|
|
|
|
do_action( 'woocommerce_email_footer', $email );
|