Is there a way to specify email AND name for sender and recipient info when using ActionMailer?
Typically you\'d do:
@recipients = \"#{user.email
@recipients = "\"#{user.name}\" <#{user.email}>" @from = "\"MyCompany\" "