PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / 1.5.1
Subscriptions for WooCommerce with Stripe Recurring Payments v1.5.1
2.0.0 1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 All 61 releases
subscription / templates / emails / subscription-expired-html.php

subscription-expired-html.php in Subscriptions for WooCommerce with Stripe Recurring Payments 1.5.1, at templates/emails/subscription-expired-html.php

59 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Mail template for Subscription status changed (Admin).
4 *
5 * @var string $email_heading Email Heading.
6 * @var int $id Subscription id.
7 * @var string $product_name Product name.
8 * @var int $qty Subscription Quantity.
9 * @var string $amount Subscription Amount with price format.
10 */
11
12 ?>
13
14 <?php do_action( 'woocommerce_email_header', $email_heading ); ?>
15
16 <p>
17 <?php
18 // translators: <b></b> tag.
19 echo wp_kses_post( sprintf( __( 'Your subscription is %1$s Expired! %2$s', 'wp_subscription' ), '<b>', '</b>' ) );
20 ?>
21 </p>
22
23 <table class="td" cellspacing="0" cellpadding="6" style="width: 100%; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;" border="1">
24 <tbody>
25 <tr>
26 <th scope="row" style="text-align:left; border: 1px solid #eee;"><?php esc_html_e( 'Subscription Id', 'wp_subscription' ); ?></th>
27 <td style="text-align:left; border: 1px solid #eee;"><?php echo esc_html( $id ); ?></td>
28 </tr>
29 <tr>
30 <th scope="row" style="text-align:left; border: 1px solid #eee;"><?php esc_html_e( 'Product', 'wp_subscription' ); ?></th>
31 <td style="text-align:left; border: 1px solid #eee;"><?php echo esc_html( $product_name ); ?></td>
32 </tr>
33 <tr>
34 <th scope="row" style="text-align:left; border: 1px solid #eee;"><?php esc_html_e( 'Qty', 'wp_subscription' ); ?></th>
35 <td style="text-align:left; border: 1px solid #eee;"><?php echo esc_html( $qty ); ?></td>
36 </tr>
37 <tr>
38 <th scope="row" style="text-align:left; border: 1px solid #eee;"><?php esc_html_e( 'Amount', 'wp_subscription' ); ?></th>
39 <td style="text-align:left; border: 1px solid #eee;"><?php echo wp_kses_post( $amount ); ?></td>
40 </tr>
41 </tbody>
42 </table>
43 <br>
44 <p>
45 <?php
46 echo wp_kses_post(
47 make_clickable(
48 sprintf(
49 // translators: subscription id.
50 __( 'You can view and edit this subscription in the dashboard here: %s', 'wp_subscription' ),
51 admin_url( 'post.php?post=' . $id . '&action=edit' )
52 )
53 )
54 );
55 ?>
56 </p>
57
58 <?php do_action( 'woocommerce_email_footer' ); ?>
59