public function __construct()
 {
     parent::__construct();
     $this->subject = _t('Member.SUBJECTPASSWORDRESET', "Your password reset link", 'Email subject');
     $viewer = new SSViewer('ForgotPasswordEmail');
     $this->body = $viewer;
 }
 public function __construct()
 {
     parent::__construct();
     $this->subject = _t('Member.SUBJECTPASSWORDCHANGED', "Your password has been changed", 'Email subject');
     $viewer = new SSViewer('ChangePasswordEmail');
     $this->body = $viewer;
 }
 public function __construct()
 {
     parent::__construct();
     $this->subject = _t('Member.SUBJECTPASSWORDCHANGED', "Your password has been changed", 'Email subject');
     $template = $this->config()->change_password_template;
     if (!$template) {
         $template = 'ChangePasswordEmail';
     }
     $viewer = new SSViewer($template);
     $this->body = $viewer;
 }
 public function __construct()
 {
     parent::__construct();
     $this->subject = _t('Member.SUBJECTPASSWORDRESET', "Your password reset link", 'Email subject');
     $template = $this->config()->forgot_password_template;
     if (!$template) {
         $template = 'ForgotPasswordEmail';
     }
     $viewer = new SSViewer($template);
     $this->body = $viewer;
 }