Sha256: 2bb29745752700b32aea4f17bef17d44f4beecb344899121f8478f06347f141d
Contents?: true
Size: 308 Bytes
Versions: 17
Compression:
Stored size: 308 Bytes
Contents
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
Version data entries
17 entries across 17 versions & 4 rubygems