WC_Email_Customer_On_Hold_Order::get_content_html()
Get content html.
Description Description
Return Return
(string)
Source Source
File: includes/emails/class-wc-email-customer-on-hold-order.php
102 103 104 105 106 107 108 109 110 111 112 113 114 | 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(), 'sent_to_admin' => false, 'plain_text' => false, 'email' => $this , ) ); } |