Is there a way to specify email AND name for sender and recipient info when using ActionMailer?
Typically you\'d do:
@recipients = \"#{user.email
In rails3 I place the following in each environment. i.e. production.rb
ActionMailer::Base.default :from => "Company Name "
Placing quotations around the company name did not work for me in Rails3.