blob: 6bbf4a27684d9c56d3f7281dd38452a1e5cfe935 [file] [log] [blame]
swissChilif0cbdc32023-01-05 17:21:38 -05001<?php
2if ( ! defined( 'ABSPATH' ) ) {
3 exit; // Exit if accessed directly
4}
5
6echo $email_heading . "\n\n";
7
8printf(
9 // translators: 1) is a link to the payment re-authentication URL.
10 __( 'Your pre-order is now available, but payment cannot be completed automatically. Please complete the payment now: %1$s', 'woocommerce-gateway-stripe' ),
11 $authorization_url
12);
13
14if ( $email->get_custom_message() ) :
15
16 echo "----------\n\n";
17 echo wptexturize( $email->get_custom_message() ) . "\n\n";
18 echo "----------\n\n";
19
20endif;
21
22
23echo "\n\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n";
24
25do_action( 'woocommerce_subscriptions_email_order_details', $order, $sent_to_admin, $plain_text, $email );
26
27echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
28
29echo apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) );