https://qiita.com/shimpex/items/0f9e9f9dfff648631c89
これをみて真似たんですが
config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :domain => "gmail.com", :user_name => Rails.application.credentials.g_mail[mattyo29@gmail], # 送信先アドレス :password => Rails.application.credentials.g_mail[:g_pass], #2段階認証パスワード :authentication => :plain, :enable_starttls_auto => true }
これでrails sをすると
config/environments/development.rb:68:in `block in <main>': undefined method `mattyo29' for #<Meil::Application:0x00007ffd41c3c3a0> (NoMethodError)
エラーが出ます
送信先アドレスのところはどのように記載すればいいですか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/30 07:40
2020/06/30 08:02
2020/06/30 16:07
2020/06/30 21:47
2020/07/01 02:19
2020/07/01 02:27