Skip to content
This repository has been archived by the owner on Jun 4, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
v.0.0.4
- Email name wasn’t used (oops!)
  • Loading branch information
Pierre-Luc Auclair committed Jul 29, 2015
1 parent e3ea6fe commit fa9cdcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PasswordReset.module
Expand Up @@ -10,7 +10,7 @@ class PasswordReset extends WireData implements Module
return array(
'title' => 'Password Reset',
'summary' => 'Customizable frontend password reset',
'version' => 3,
'version' => 4,
'autoload' => false,
'singular' => true
);
Expand Down Expand Up @@ -65,7 +65,7 @@ class PasswordReset extends WireData implements Module

private function sendRequestEmail() {
$email = wireMail();
$email->from($this->emailAddress);
$email->from($this->emailAddress, $this->emailName);
$email->to($this->userEmail);
$email->subject(__('Password reset')); // Email subject

Expand Down

0 comments on commit fa9cdcb

Please sign in to comment.