Googled for this to no avail. Didn't find anything in the API either. I was expecting some kind of class method or configuration option to set it...
So, rather than calling
from "my@email.com"
for every method, it could be called automatically.
|
Googled for this to no avail. Didn't find anything in the API either. I was expecting some kind of class method or configuration option to set it... So, rather than calling
for every method, it could be called automatically. |
|||
|
|
Rails 3config/environments/development.rb:
config/environments/production.rb:
You can also set this per mailer:
Rails 2This is not supported by default. But you can achieve this functionality by using the action_mailer_callbacks plugin. Essentially this plugin allows you to add
Reference: 1) Article discussing the plugin. ORYou can monkey patch the Add the code below to your
Now you can configure your default value as follows: config/environments/development.rb:
config/environments/production.rb:
You can also set this per mailer:
|
||||
|
|
|
In Rails 3: config/environments/development.rb:
config/environments/production.rb:
|
|||
|
|
|
In Rails 3 you can set this in your environment(s):
Edit: At least the Rails guide says you can, it doesn't appear to work though. http://edgeguides.rubyonrails.org/action_mailer_basics.html |
|||||
|
|
You can set an environment variable in one of your environment files with the from email and use it in mailer. I was also stuck with this a few days ago. In my
|
|||
|
|
|
I went with the monkey-patching method that KandadaBoggu suggested. However, it does not work quite right in Rails 2.3.8; you can't override the default. This works, however:
|
|||
|
|