0
當在Rails中使用SMTP設置發送電子郵件時,您需要提供用戶名和密碼才能從您的帳戶發送電子郵件。但是,在代碼中以純文本形式將密碼輸入網站的電子郵件帳戶是否有點危險?有沒有更安全的方法來做到這一點?Rails mailer/smtp - 潛在的安全問題?
config.action_mailer.smtp_settings = {
:address => "address_here",
:port => 'port_#_here',
:domain => "example.com",
:authentication => :plain,
:user_name => "[email protected]",
:password => "foobar",
:enable_starttls_auto => true
}