diff options
author | Camil Staps | 2015-05-17 16:44:43 +0200 |
---|---|---|
committer | Camil Staps | 2015-05-17 16:44:43 +0200 |
commit | 1a115cfc53782fd51e55ed86671d10c7c2bb08b2 (patch) | |
tree | a880bcd98ed231dafcac199c57a8b4f2927de3a6 /src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php | |
parent | Support array as config.allowed_origin (diff) |
First attempt
Diffstat (limited to 'src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php')
-rw-r--r-- | src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php b/src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php index 40bc578..204df90 100644 --- a/src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php +++ b/src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php @@ -23,7 +23,7 @@ class PasswordReminder extends Model { $this->valid_till = date("Y-m-d H:i:s", time() + 3600); $user = User::find($this->userId); - Mail::send('packages.camil-staps.botleagues-api.emails.auth.reminder', ['token' => $this->token], function($message) use ($user) { + Mail::send('botleagues-api::emails.auth.reminder', ['token' => $this->token], function($message) use ($user) { $message->to($user->email, "User " . $user->id); }); |