From 3ad5edcc109e09143cf15bb49cc7beec35b072a0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 8 Feb 2013 14:49:12 -0600 Subject: [PATCH] adding a default password reminder e-mail. --- app/config/auth.php | 2 +- app/views/emails/auth/reminder.blade.php | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 app/views/emails/auth/reminder.blade.php diff --git a/app/config/auth.php b/app/config/auth.php index f39e3259..62ea9c3d 100644 --- a/app/config/auth.php +++ b/app/config/auth.php @@ -56,7 +56,7 @@ 'reminder' => array( - 'email' => 'auth.password', 'table' => 'password_reminders', + 'email' => 'emails.auth.reminder', 'table' => 'password_reminders', ), diff --git a/app/views/emails/auth/reminder.blade.php b/app/views/emails/auth/reminder.blade.php new file mode 100644 index 00000000..2976327b --- /dev/null +++ b/app/views/emails/auth/reminder.blade.php @@ -0,0 +1,13 @@ + + + + + + +

Password Reset

+ +
+ To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}. +
+ + \ No newline at end of file