Sha256: c9c86251da0972feffd00f323b29b52aba8b71ec696e3c68fb6667bd4944fff6
Contents?: true
Size: 330 Bytes
Versions: 17
Compression:
Stored size: 330 Bytes
Contents
module Cms class ForgotPasswordMailer < ActionMailer::Base def reset_password(link, email) @subject = "Account Management" @body[:url] = link @recipients = email @from = 'do_not_reply@domain.com' @sent_on = Time.now template "cms/forgot_password_mailer/reset_password" end end end
Version data entries
17 entries across 17 versions & 1 rubygems