2012-06-20 15:20:12 -04:00
|
|
|
## Rails 4.0.0 (unreleased) ##
|
|
|
|
|
2012-08-20 09:22:12 -04:00
|
|
|
* Allow delivery method options to be set per mail instance *Aditya Sanghi*
|
|
|
|
|
|
|
|
If your smtp delivery settings are dynamic,
|
|
|
|
you can now override settings per mail instance for e.g.
|
|
|
|
|
|
|
|
def my_mailer(user,company)
|
2012-09-06 16:09:27 -04:00
|
|
|
mail to: user.email, subject: "Welcome!",
|
2012-08-20 09:22:12 -04:00
|
|
|
delivery_method_options: {user_name: company.smtp_user,
|
|
|
|
password: company.smtp_password}
|
|
|
|
end
|
|
|
|
|
|
|
|
This will ensure that your default SMTP settings will be overridden
|
|
|
|
by the company specific ones. You only have to override the settings
|
|
|
|
that are dynamic and leave the static setting in your environment
|
|
|
|
configuration file (e.g. config/environments/production.rb)
|
|
|
|
|
2012-07-06 21:51:31 -04:00
|
|
|
* Allow to set default Action Mailer options via `config.action_mailer.default_options=` *Robert Pankowecki*
|
|
|
|
|
2012-06-20 15:20:12 -04:00
|
|
|
* Raise an `ActionView::MissingTemplate` exception when no implicit template could be found. *Damien Mathieu*
|
|
|
|
|
2012-06-23 15:21:33 -04:00
|
|
|
* Asynchronously send messages via the Rails Queue *Brian Cardarella*
|
|
|
|
|
2012-08-28 15:15:12 -04:00
|
|
|
Please check [3-2-stable](https://github.com/rails/rails/blob/3-2-stable/actionmailer/CHANGELOG.md) for previous changes.
|