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
}