Using ActionMailer with a company Gmail account
I'm not sure if this belongs in server fault or here feel free to move it if it makes more sense somewhere else. I've seen the examples for setting up the smtp settings and using ActionMailer with Gmail and confirmed that they work for me. Basically it looks like this for me: config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :user_name => '<username>', :password => '<password>', :authentication => 'plain', :enable_starttls_auto => true } What I need to do now is to send an email to an address that isn't a plain Gmail