Automattic\WooCommerce\Blocks\Domain\Services\Email

CustomerNewAccount::get_default_subject()publicWC 3.1.0

Get email subject.

Method of the class: CustomerNewAccount{}

No Hooks.

Return

String.

Usage

$CustomerNewAccount = new CustomerNewAccount();
$CustomerNewAccount->get_default_subject();

Changelog

Since 3.1.0 Introduced.

CustomerNewAccount::get_default_subject() code WC 8.7.0

public function get_default_subject() {
	return __( 'Your {site_title} account has been created!', 'woocommerce' );
}