WC_Email_Customer_Reset_Password::get_content_html()
Get content html.
Description Description
Return Return
(string)
Source Source
File: includes/emails/class-wc-email-customer-reset-password.php
public function get_content_html() {
return wc_get_template_html(
$this->template_html,
array(
'email_heading' => $this->get_heading(),
'user_id' => $this->user_id,
'user_login' => $this->user_login,
'reset_key' => $this->reset_key,
'blogname' => $this->get_blogname(),
'additional_content' => $this->get_additional_content(),
'sent_to_admin' => false,
'plain_text' => false,
'email' => $this,
)
);
}