84 lines
2.5 KiB
PHP
84 lines
2.5 KiB
PHP
<?php
|
||
/**
|
||
* Customer Notification: Free trial of an automatically renewed subscription is about to expire email.
|
||
*
|
||
* @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.
|
||
*
|
||
* @since 6.9.0
|
||
*/
|
||
do_action( 'woocommerce_email_header', $email_heading, $email );
|
||
|
||
echo $email_improvements_enabled ? '<div class="email-introduction">' : ''; ?>
|
||
<p>
|
||
<?php
|
||
echo esc_html(
|
||
sprintf(
|
||
/* translators: %s: Customer first name */
|
||
__( 'Hi, %s.', 'woocommerce-subscriptions' ),
|
||
$subscription->get_billing_first_name()
|
||
)
|
||
);
|
||
?>
|
||
</p>
|
||
<p>
|
||
<?php
|
||
echo wp_kses(
|
||
sprintf(
|
||
// translators: %1$s: human readable time difference (eg 3 days, 1 day), %2$s: date in local format.
|
||
__(
|
||
'Your paid subscription begins when your free trial expires in %1$s — that’s <strong>%2$s</strong>.',
|
||
'woocommerce-subscriptions'
|
||
),
|
||
$subscription_time_til_event,
|
||
$subscription_event_date
|
||
),
|
||
[ 'strong' => [] ]
|
||
);
|
||
?>
|
||
</p>
|
||
<p>
|
||
<?php
|
||
|
||
echo wp_kses(
|
||
sprintf(
|
||
// translators: %1$s: link to account dashboard.
|
||
__( 'Payment will be deducted using the payment method on file. You can manage this subscription from your %1$s.', 'woocommerce-subscriptions' ),
|
||
'<a href="' . esc_url( $subscription->get_view_order_url() ) . '">' . esc_html__( 'account dashboard', 'woocommerce-subscriptions' ) . '</a>'
|
||
),
|
||
[ 'a' => [ 'href' => true ] ]
|
||
);
|
||
?>
|
||
</p>
|
||
<?php
|
||
echo $email_improvements_enabled ? '</div>' : '';
|
||
|
||
// Show subscription details.
|
||
\WC_Subscriptions_Email::subscription_details( $subscription, $order, $sent_to_admin, $plain_text, true );
|
||
|
||
/** This action is documented in templates/emails/customer-notification-auto-renewal.php */
|
||
do_action( 'woocommerce_subscriptions_email_order_details', $subscription, $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>' : '';
|
||
}
|
||
|
||
/**
|
||
* @hooked WC_Emails::email_footer() Output the email footer.
|
||
*
|
||
* @since 6.9.0
|
||
*/
|
||
do_action( 'woocommerce_email_footer', $email );
|