I\'m using my Gmail Apps for Domain account to send email within my rails application for standard automated emails (user signup, forgot password, notify admin of new comment, e
The comment box was becoming too restrictive for my questions. Changing the ActionMailer::Base.smtp_settings
hash dynamically works as expected for me, so I suspect there is some other factor at play here. Some things to try:
Edit: more things to try
I'd have a good look at that smtp_tls.rb file mentioned in the comments to make sure nothing's hard-coded. Or remove it and try the plugin I linked above. To use it, you just need to add :tls => true
to the smtp_settings hash.