aboutsummaryrefslogtreecommitdiffstats
path: root/app/mailers/passwords_mailer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/mailers/passwords_mailer.rb')
-rw-r--r--app/mailers/passwords_mailer.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/mailers/passwords_mailer.rb b/app/mailers/passwords_mailer.rb
new file mode 100644
index 0000000..4f0ac7f
--- /dev/null
+++ b/app/mailers/passwords_mailer.rb
@@ -0,0 +1,6 @@
+class PasswordsMailer < ApplicationMailer
+ def reset(user)
+ @user = user
+ mail subject: "Reset your password", to: user.email_address
+ end
+end