# tier-pricing-table/8.0.2/src/Addons/NonLoggedInUsers/Wholesale/Emails/CustomerApplicationRejectedEmail.php

Tiered Pricing Table for WooCommerce, version 8.0.2. 32 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/8.0.2/code/src/Addons/NonLoggedInUsers/Wholesale/Emails/CustomerApplicationRejectedEmail.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/8.0.2/raw/src/Addons/NonLoggedInUsers/Wholesale/Emails/CustomerApplicationRejectedEmail.php
- Modified: 2026-09-24T13:05:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tier-pricing-table/8.0.2/code/src/Addons/NonLoggedInUsers/Wholesale/Emails/CustomerApplicationRejectedEmail.php#L10-L20`.

```php
<?php namespace TierPricingTable\Addons\NonLoggedInUsers\Wholesale\Emails;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class CustomerApplicationRejectedEmail extends AbstractApplicationEmail {

	public function __construct() {
		$this->id             = 'tpt_wholesale_customer_rejected';
		$this->title          = __( 'Wholesale application rejected', 'tier-pricing-table' );
		$this->description    = __( 'Sent to the applicant when the application is rejected, with the reason if one was given.', 'tier-pricing-table' );
		$this->template_html  = 'emails/customer-application-rejected.php';
		$this->template_plain = 'emails/plain/customer-application-rejected.php';
		$this->customer_email = true;

		parent::__construct();
	}

	protected function getTriggerAction(): string {
		return 'tiered_pricing_table/wholesale/application_rejected';
	}

	public function get_default_subject() {
		return __( 'About your wholesale application at {site_title}', 'tier-pricing-table' );
	}

	public function get_default_heading() {
		return __( 'Your wholesale application', 'tier-pricing-table' );
	}
}

```
