WC_Email_Customer_Reset_Password::get_content_plain
Get content plain.
Method of the class: WC_Email_Customer_Reset_Password{}
No Hooks.
Returns
String.
Usage
$WC_Email_Customer_Reset_Password = new WC_Email_Customer_Reset_Password(); $WC_Email_Customer_Reset_Password->get_content_plain();
WC_Email_Customer_Reset_Password::get_content_plain() WC Email Customer Reset Password::get content plain code WC 10.8.1
public function get_content_plain() {
return wc_get_template_html(
$this->template_plain,
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' => true,
'email' => $this,
)
);
}