Ruby Forum Ruby on Rails > How to set Sender Name in the From: header in Action Mailer

Posted by Hari Rajagopal (harizen)
on 09.05.2008 19:56
I have setup ActionMailer to send mails via Gmail.

Here are the settings:

config.action_mailer.smtp_settings =  {
:address => "smtp.gmail.com",
:port    => "587",
:domain => "example.com",
:authentication => :plain,
:user_name => "admin@example.com",
:password => "secret"
}
The "admin" username has an email account setup with a name of "Mailer
Account"

How do I set the From: header so that the user's inbox shows the name on
the account that the mail is sent from instead of the username "admin"
that shows up currently.

How do I get this to happen?

Thanks in advance
Posted by kopf1988 (Guest)
on 09.05.2008 20:12
(Received via mailing list)
I think I did something like

From "Master Chief <master_cheif@hotmail.com"

It was very similar to that and it worked.

On May 9, 12:56 pm, Hari Rajagopal <rails-mailing-l...@andreas-s.net>
Posted by Hari Rajagopal (harizen)
on 09.05.2008 20:57
kopf1988 wrote:
> I think I did something like
> 
> From "Master Chief <master_cheif@hotmail.com"
> 
> It was very similar to that and it worked.
> 
> On May 9, 12:56 pm, Hari Rajagopal <rails-mailing-l...@andreas-s.net>

I tried in the smtp settings

:user_name => "Mailer Account <admin@example.com>",

and it didn't work
Posted by Kyle (Guest)
on 11.05.2008 01:38
(Received via mailing list)
Gmail does not let you alter the "from" email address when relaying.
You can specify the "from" name in your mailer, but it will use the
"from" address for the credentials that you supply to log into your
account.  I wanted emails to come from "My Company
<webmaster@mycompany.com>", but our webmaster account is a nickname
for my account, so it does not have its own login credentials.  Since
I had to use my account information to log in, when I send an email,
it will say "My Company <myaccountname@mycompany.com>" in the "from"
field.

If you're not using Gmail, specifying "from" in the mailer works fine.

-Kyle

On May 9, 1:57 pm, Hari Rajagopal <rails-mailing-l...@andreas-s.net>