WC_Email_Customer_Failed_Order::get_content_html
Get content html.
Method of the class: WC_Email_Customer_Failed_Order{}
No Hooks.
Returns
String.
Usage
$WC_Email_Customer_Failed_Order = new WC_Email_Customer_Failed_Order(); $WC_Email_Customer_Failed_Order->get_content_html();
WC_Email_Customer_Failed_Order::get_content_html() WC Email Customer Failed Order::get content html code WC 10.7.0
public function get_content_html() {
return wc_get_template_html(
$this->template_html,
array(
'order' => $this->object,
'email_heading' => $this->get_heading(),
'additional_content' => $this->get_additional_content(),
'blogname' => $this->get_blogname(),
'sent_to_admin' => false,
'plain_text' => false,
'email' => $this,
)
);
}