Hi,
Is there a way to specify email AND name for sender and recipient info when using ActionMailer?
Typically you'd do:
@recipients = "#{user.email}"
@from = "info@mycompany.com"
@subject = "Hi"
@content_type = "text/html"
But, I want to specify name as well-- MyCompany <info@mycompany.com>, John Doe <john.doe@mycompany>.
Is there a way to do that?
Thanks, Amie
