PluginProbe
Tiered Pricing Table for WooCommerce / 8.0.2
Tiered Pricing Table for WooCommerce v8.0.2
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
tier-pricing-table / src / Addons / NonLoggedInUsers / Wholesale / views / emails / customer-application-approved.php

customer-application-approved.php in Tiered Pricing Table for WooCommerce 8.0.2, at src/Addons/NonLoggedInUsers/Wholesale/views/emails/customer-application-approved.php

32 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Customer e-mail: the wholesale account is approved.
4 *
5 * Override it by copying this file to yourtheme/woocommerce/emails/customer-application-approved.php.
6 *
7 * @var \TierPricingTable\Addons\NonLoggedInUsers\Wholesale\Models\WholesaleApplication $application
8 * @var string $emailHeading
9 * @var bool $sent_to_admin
10 * @var bool $plain_text
11 * @var WC_Email $email
12 */
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit;
16 }
17
18 do_action( 'woocommerce_email_header', $emailHeading, $email ); ?>
19
20 <p><?php
21 /* translators: %s: first name */
22 echo esc_html( sprintf( __( 'Hi %s,', 'tier-pricing-table' ), $application->getField( 'first_name' ) ?: $application->getName() ) ); ?></p>
23 <p><?php esc_html_e( 'Good news: your wholesale account is approved. Log in to see your wholesale prices.', 'tier-pricing-table' ); ?></p>
24 <p><a href="<?php echo esc_url( wc_get_page_permalink( 'myaccount' ) ); ?>"><?php esc_html_e( 'Log in to your account', 'tier-pricing-table' ); ?></a></p>
25
26 <?php
27 if ( $additionalContent = $email->get_additional_content() ) {
28 echo wp_kses_post( wpautop( wptexturize( $additionalContent ) ) );
29 }
30
31 do_action( 'woocommerce_email_footer', $email );
32