Sha256: 6efe05a0cbecfe10ecd7386580a8686c3a7fc7b678c9a94caec07fc74b10bee3
Contents?: true
Size: 1.11 KB
Versions: 12
Compression:
Stored size: 1.11 KB
Contents
class UserMailer < ApplicationMailer # Subject can be set in your I18n file at config/locales/en.yml # with the following lookup: # # en.user_mailer.welcome.subject # def welcome(user) @greeting = "Hi" mail to: "to@example.org" end # Subject can be set in your I18n file at config/locales/en.yml # with the following lookup: # # en.user_mailer.newsletter.subject # def newsletter(user) @greeting = "Hi" mail to: "to@example.org" end # Subject can be set in your I18n file at config/locales/en.yml # with the following lookup: # # en.user_mailer.day1.subject # def day1(user) @greeting = "Hi" mail to: "to@example.org" end # Subject can be set in your I18n file at config/locales/en.yml # with the following lookup: # # en.user_mailer.day3.subject # def day3(user) @greeting = "Hi" mail to: "to@example.org" end # Subject can be set in your I18n file at config/locales/en.yml # with the following lookup: # # en.user_mailer.day7.subject # def day7(user) @greeting = "Hi" mail to: "to@example.org" end end
Version data entries
12 entries across 12 versions & 1 rubygems