WC_Email_Customer_Abandoned_Cart_Recovery::get_content_plainpublicWC 1.0

Get content plain.

Method of the class: WC_Email_Customer_Abandoned_Cart_Recovery{}

No Hooks.

Returns

String.

Usage

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

WC_Email_Customer_Abandoned_Cart_Recovery::get_content_plain() code WC 11.0.0

public function get_content_plain() {
	return wc_get_template_html(
		$this->template_plain,
		array(
			'order'              => $this->object,
			'email_heading'      => $this->get_heading(),
			'recovery_url'       => $this->get_recovery_url(),
			'unsubscribe_url'    => $this->get_unsubscribe_url(),
			'additional_content' => $this->get_additional_content(),
			'sent_to_admin'      => false,
			'plain_text'         => true,
			'email'              => $this,
		)
	);
}