2012-10-04 18:51:07 +00:00
|
|
|
<?php
|
2018-03-07 17:27:17 +00:00
|
|
|
/**
|
|
|
|
* Class WC_Email_Customer_Reset_Password file.
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Emails
|
|
|
|
*/
|
2013-02-20 17:14:46 +00:00
|
|
|
|
2014-09-20 19:30:40 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2018-03-07 14:15:17 +00:00
|
|
|
exit; // Exit if accessed directly.
|
2014-09-20 19:30:40 +00:00
|
|
|
}
|
2013-02-20 17:14:46 +00:00
|
|
|
|
2017-02-16 11:46:01 +00:00
|
|
|
if ( ! class_exists( 'WC_Email_Customer_Reset_Password', false ) ) :
|
2013-08-02 10:17:56 +00:00
|
|
|
|
2016-01-05 18:36:44 +00:00
|
|
|
/**
|
2018-03-07 14:15:17 +00:00
|
|
|
* Customer Reset Password.
|
2016-01-05 18:36:44 +00:00
|
|
|
*
|
2018-03-07 14:15:17 +00:00
|
|
|
* An email sent to the customer when they reset their password.
|
2016-01-05 18:36:44 +00:00
|
|
|
*
|
2018-03-07 14:15:17 +00:00
|
|
|
* @class WC_Email_Customer_Reset_Password
|
2018-09-06 12:18:09 +00:00
|
|
|
* @version 3.5.0
|
2020-08-05 16:36:24 +00:00
|
|
|
* @package WooCommerce\Classes\Emails
|
2018-03-07 14:15:17 +00:00
|
|
|
* @extends WC_Email
|
2016-01-05 18:36:44 +00:00
|
|
|
*/
|
2018-03-07 14:15:17 +00:00
|
|
|
class WC_Email_Customer_Reset_Password extends WC_Email {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User ID.
|
|
|
|
*
|
|
|
|
* @var integer
|
|
|
|
*/
|
|
|
|
public $user_id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User login name.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $user_login;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User email.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $user_email;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset key.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $reset_key;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
|
|
|
|
$this->id = 'customer_reset_password';
|
|
|
|
$this->customer_email = true;
|
|
|
|
|
|
|
|
$this->title = __( 'Reset password', 'woocommerce' );
|
|
|
|
$this->description = __( 'Customer "reset password" emails are sent when customers reset their passwords.', 'woocommerce' );
|
|
|
|
|
|
|
|
$this->template_html = 'emails/customer-reset-password.php';
|
|
|
|
$this->template_plain = 'emails/plain/customer-reset-password.php';
|
|
|
|
|
|
|
|
// Trigger.
|
|
|
|
add_action( 'woocommerce_reset_password_notification', array( $this, 'trigger' ), 10, 2 );
|
|
|
|
|
|
|
|
// Call parent constructor.
|
|
|
|
parent::__construct();
|
|
|
|
}
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2018-03-07 14:15:17 +00:00
|
|
|
/**
|
|
|
|
* Get email subject.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_default_subject() {
|
2018-09-06 12:18:09 +00:00
|
|
|
return __( 'Password Reset Request for {site_title}', 'woocommerce' );
|
2012-10-04 18:51:07 +00:00
|
|
|
}
|
|
|
|
|
2018-03-07 14:15:17 +00:00
|
|
|
/**
|
|
|
|
* Get email heading.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_default_heading() {
|
2018-09-06 12:18:09 +00:00
|
|
|
return __( 'Password Reset Request', 'woocommerce' );
|
2014-05-30 09:42:47 +00:00
|
|
|
}
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2018-03-07 14:15:17 +00:00
|
|
|
/**
|
|
|
|
* Trigger.
|
|
|
|
*
|
2018-03-07 17:27:17 +00:00
|
|
|
* @param string $user_login User login.
|
|
|
|
* @param string $reset_key Password reset key.
|
2018-03-07 14:15:17 +00:00
|
|
|
*/
|
|
|
|
public function trigger( $user_login = '', $reset_key = '' ) {
|
|
|
|
$this->setup_locale();
|
|
|
|
|
|
|
|
if ( $user_login && $reset_key ) {
|
|
|
|
$this->object = get_user_by( 'login', $user_login );
|
|
|
|
$this->user_id = $this->object->ID;
|
|
|
|
$this->user_login = $user_login;
|
|
|
|
$this->reset_key = $reset_key;
|
|
|
|
$this->user_email = stripslashes( $this->object->user_email );
|
|
|
|
$this->recipient = $this->user_email;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $this->is_enabled() && $this->get_recipient() ) {
|
|
|
|
$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->restore_locale();
|
|
|
|
}
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2018-03-07 14:15:17 +00:00
|
|
|
/**
|
|
|
|
* Get content html.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_content_html() {
|
|
|
|
return wc_get_template_html(
|
2019-03-04 16:33:05 +00:00
|
|
|
$this->template_html,
|
|
|
|
array(
|
2019-03-04 16:38:18 +00:00
|
|
|
'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,
|
2018-03-07 14:15:17 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2018-03-07 14:15:17 +00:00
|
|
|
/**
|
|
|
|
* Get content plain.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_content_plain() {
|
|
|
|
return wc_get_template_html(
|
2019-03-04 16:33:05 +00:00
|
|
|
$this->template_plain,
|
|
|
|
array(
|
2019-03-04 16:38:18 +00:00
|
|
|
'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,
|
2018-03-07 14:15:17 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2019-03-04 16:56:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default content to show below main email content.
|
|
|
|
*
|
2019-05-21 20:53:03 +00:00
|
|
|
* @since 3.7.0
|
2019-03-04 16:56:40 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_default_additional_content() {
|
|
|
|
return __( 'Thanks for reading.', 'woocommerce' );
|
|
|
|
}
|
2012-10-04 18:51:07 +00:00
|
|
|
}
|
2013-08-02 10:17:56 +00:00
|
|
|
|
|
|
|
endif;
|
|
|
|
|
2014-09-20 19:30:40 +00:00
|
|
|
return new WC_Email_Customer_Reset_Password();
|