WC_Email_Customer_Review_Request::get_content_htmlpublicWC 1.0

Get content html.

Method of the class: WC_Email_Customer_Review_Request{}

No Hooks.

Returns

String.

Usage

$WC_Email_Customer_Review_Request = new WC_Email_Customer_Review_Request();
$WC_Email_Customer_Review_Request->get_content_html();

WC_Email_Customer_Review_Request::get_content_html() code WC 10.8.1

public function get_content_html() {
	return wc_get_template_html(
		$this->template_html,
		array(
			'order'              => $this->object,
			'email_heading'      => $this->get_heading(),
			'review_order_url'   => $this->get_review_order_url(),
			'additional_content' => $this->get_additional_content(),
			'sent_to_admin'      => false,
			'plain_text'         => false,
			'email'              => $this,
		)
	);
}