62 lines
2.4 KiB
PHP
62 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Customer completed subscription change email
|
|
*
|
|
* Based on the WooCommerce core customer-completed-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: %s: Customer first name */ ?>
|
|
<p><?php printf( esc_html__( 'Hi %s,', 'woocommerce-subscriptions' ), esc_html( $order->get_billing_first_name() ) ); ?></p>
|
|
<p><?php esc_html_e( 'You have successfully changed your subscription items. Your new order and subscription details are shown below for your reference:', 'woocommerce-subscriptions' ); ?></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 );
|
|
?>
|
|
|
|
<h2><?php echo esc_html__( 'New subscription details', 'woocommerce-subscriptions' ); ?></h2>
|
|
|
|
<?php
|
|
foreach ( $subscriptions as $subscription ) {
|
|
do_action( 'woocommerce_subscriptions_email_order_details', $subscription, $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 );
|