1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #7549 from asanghi/master

Fix Changelog example in Action Mailer [ci skip]
This commit is contained in:
Carlos Antonio da Silva 2012-09-06 13:27:53 -07:00
commit 817a20b1cd

View file

@ -6,7 +6,7 @@
you can now override settings per mail instance for e.g.
def my_mailer(user,company)
mail to: customer.email, subject: "Welcome!",
mail to: user.email, subject: "Welcome!",
delivery_method_options: {user_name: company.smtp_user,
password: company.smtp_password}
end