WC_Email_Customer_New_Account::get_content_html()
Get content html.
Method of the class: WC_Email_Customer_New_Account{}
No Hooks.
Return
String
.
Usage
$WC_Email_Customer_New_Account = new WC_Email_Customer_New_Account(); $WC_Email_Customer_New_Account->get_content_html();
WC_Email_Customer_New_Account::get_content_html() WC Email Customer New Account::get content html code WC 9.8.2
public function get_content_html() { return wc_get_template_html( $this->template_html, array( 'email_heading' => $this->get_heading(), 'additional_content' => $this->get_additional_content(), 'user_login' => $this->user_login, 'user_pass' => $this->user_pass, 'blogname' => $this->get_blogname(), 'password_generated' => $this->password_generated, 'sent_to_admin' => false, 'plain_text' => false, 'email' => $this, 'set_password_url' => $this->set_password_url, ) ); }