Automattic\WooCommerce\Blocks\Domain\Services\Email

CustomerNewAccount::get_content_plain()publicWC 1.0

Get content plain.

Method of the class: CustomerNewAccount{}

No Hooks.

Return

String.

Usage

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

CustomerNewAccount::get_content_plain() code WC 8.6.1

public function get_content_plain() {
	return wc_get_template_html(
		$this->template_plain,
		array(
			'email_heading'      => $this->get_heading(),
			'additional_content' => $this->get_additional_content(),
			'user_login'         => $this->user_login,
			'blogname'           => $this->get_blogname(),
			'set_password_url'   => $this->set_password_url,
			'sent_to_admin'      => false,
			'plain_text'         => true,
			'email'              => $this,
		),
		'',
		$this->default_template_path
	);
}