Browse Source

adding a default password reminder e-mail.

Taylor Otwell 11 years ago
parent
commit
3ad5edcc10
2 changed files with 14 additions and 1 deletions
  1. 1 1
      app/config/auth.php
  2. 13 0
      app/views/emails/auth/reminder.blade.php

+ 1 - 1
app/config/auth.php

@@ -56,7 +56,7 @@ return array(
 
 	'reminder' => array(
 
-		'email' => 'auth.password', 'table' => 'password_reminders',
+		'email' => 'emails.auth.reminder', 'table' => 'password_reminders',
 
 	),
 

+ 13 - 0
app/views/emails/auth/reminder.blade.php

@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="en-US">
+	<head>
+		<meta charset="utf-8">
+	</head>
+	<body>
+		<h2>Password Reset</h2>
+
+		<div>
+			To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
+		</div>
+	</body>
+</html>