action-mailer

How do I send signed emails from ActionMailer?

I'm using GMail as my SMTP server. I have that configuration working just fine: # config/initializers/action_mailer.rb: ActionMailer::Base.smtp_settings = { :tls => true, :address => "smtp.gmail.com", :port => "587", :domain => "www.example.org", :authentication => :login, :user_name ...

How to encrypt password in smtp_settings while using actionmailer to send Emails in rails app?

This is the SMTP settings I use in my app and i have no idea how to hide(encrypt) the password which is presented in this settings. ActionMailer::Base.smtp_settings = { :tls =>true, :enable_starttls_auto =>true, :address => "smtp.gmail.com", :domain => "gmail.com", :user_name => "somename", #:password => "somepassword", :...