
updated on 2019-03-05
config.action_mailer.smtp_settings = {
:enable_starttls_auto => true,
:address => "smtp.gmail.com",
:port => 587,
:domain => 'smtp.gmail.com',
:user_name => "xxxxxxx@gmail.com", #gmailアドレス 環境変数
:password => "xxxxxxxxxxx", #gmailパスワード 環境変数
:authentication => 'login',
}