views:

156

answers:

1

Hi! I just released a Rails app in Dreamhost and I'm using Google Apps for my domain to handle Emai. I created the [email protected] account to serve as the sender authentication.

I installed smtp-tls plugin and my smtp conf is:

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
  :enable_starttls_auto => true,
  :address        => "smtp.gmail.com",
  :port           => 587,
  :domain         => "www.domain.com",
  :authentication => :plain,
  :user_name      => "[email protected]",
  :password       => 'secret'
}

The problem: Emails sometimes arrives, and sometimes don't. The recipient addresses are not exclusively Yahoo or GMail accounts, so I think it's not a spam issue. Any ideas? Thanks!

+1  A: 

If you want better tracking of whether or not your emails are getting where you're trying to send them, checkout PostageApp:

http://postageapp.com/

Jamie Wong
Hey that looks great! I'll read more about it. Great resource buddy.
benoror
Unfortunately it seems that PstageApp doesn't support using GMail SMTP and Google Apps for your domain.
benoror
http://help.postageapp.com/discussions/questions/12-gmail-smtp-and-google-apps-for-your-domain
benoror