vote up 0 vote down star

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

flag

50% accept rate

1 Answer

vote up 4 vote down check
@recipients   = "\"#{user.name}\" <#{user.email}>"
@from         = "\"MyCompany\" <info@mycompany.com>"
link|flag
That was easy.. thanks! – Grnbeagle Jun 5 at 21:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.