up vote 4 down vote favorite
1
share [g+] share [fb]

I've got my Rails (2.1) app setup to send email via Gmail, however whenever I send an email no matter what I set the from address to in my ActionMailer the emails always come as if sent from my Gmail email address. Is this a security restriction they've put in place at Gmail to stop spammers using their SMTP?

Note: I've tried both of the following methods within my ActionMailer (just in case):

@from = me@mydomain.com
from 'me@mydomain.com'
link|improve this question

72% accept rate
1  
Have you added the addresses you are trying to send from to your GMail account? – Codebeef Sep 20 '08 at 21:58
feedback

3 Answers

up vote 3 down vote accepted

I believe it's just something Gmail does when mail is sent through its SMTP, as it was mentioned that they do this on a tutorial about using their SMTP to send mail.

link|improve this answer
However, you can allow Gmail to send emails with one of your other email addresses in the From: header by adding it under Gmail's Settings > Accounts. – gabriel Jun 11 '10 at 2:19
feedback

I think I tried and failed in the past myself, but I did just come across this on the gmail site: http://mail.google.com/support/bin/answer.py?ctx=gmail&hl=en&answer=22370

Looks like you can specify a custom "From" address within gmail, and perhaps at that point, see if setting @from will work (now that gmail knows about your custom from address).

link|improve this answer
feedback

This is most likely to stop people trying to send email from addresses that Google can't verify that the sender owns. This is fairly common amongst mail providers, and is probably a safeguard to stop people using Google's services for sending spam.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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