Rails ActionMailerでGmail経由でメール送信をしたい
現在作成しているRailsアプリ内で、サイト訪問者からのお問い合わせを受け付けるフォームを作成しました。そのフォーム経由でメールアドレスと名前、件名とお問い合わせ内容を受け取り、サイト運営者(僕)にGmail経由でメールが届くようにしたいです。(この際、僕のアドレスがgmailでなければいけないのかどうかも併せて知りたいです)
▼期待する挙動
①サイトのメインページの最後にあるお問い合わせフォーム(index.html.erb)の確認ボタン(submitボタン)を押す→②確認ページ(confirm.html.erb)に飛ぶ。→③そのページで送信ボタン(submitボタン)を押すとメールが送られる
起きている問題・エラーメッセージ
現在上記の期待する挙動の③で、送信ボタンを押すと下図のようなエラーメッセージが表示されます。
メールを外部へ送信する設定ができていないのだと思いますが、自分ではどこが違うのかが分からず困っています。
該当のソースコード
index
1<div class="contact-form-section"> 2 <%= form_with model: @contact, :url => home_confirm_path, local: true do |form| %> 3 <% if @contact.errors.any? %> 4 <div class="alert alert-warning"> 5 <ul> 6 <% @contact.errors.full_messages.each do |message| %> 7 <li><%= message %></li> 8 <% end %> 9 </ul> 10 </div> 11 <% end %> 12 <%= form.email_field :email, :placeholder => "Email", class: "input-email" %> 13 <%= form.text_field :name, :placeholder => "Name", class: "input-name" %> 14 <%= form.text_field :subject, :placeholder => "Subject", class: "input-subject" %> 15 <%= form.text_area :message, :placeholder => "Message...", class: "textarea-message" %> 16 <%= form.submit "Confirm", class: "submit-send" %> 17<% end %>
controller
1class HomeController < ApplicationController 2 def index 3 @contact = Contact.new 4 render :action => 'index' 5 end 6 7 def confirm 8 @contact = Contact.new(contact_params) 9 if @contact.valid? 10 render :action => 'confirm' 11 else 12 render :action => 'index' 13 end 14 end 15 16 def thanks 17 @contact = Contact.new(contact_params) 18 if params[:back] 19 render :action => 'thanks' 20 else 21 ContactMailer.received_email(@contact).deliver 22 render :action => 'thanks' 23 end 24 end 25 26 private 27 def contact_params 28 params.require(:contact).permit(:name, :email, :subject, :message) 29 end 30end
Route
1Rails.application.routes.draw do 2 root "home#index" 3 get 'home/confirm' => redirect("/") 4 get 'home/thanks' => redirect("/") 5 get "projects/index" => "projects#index" 6 get "team/index" => "team#index" 7 get "support/index" => "support#index" 8 get "join/index" => "join#index" 9 get "vrgame/index" => "vrgame#index" 10 get "film/index" => "film#index" 11 12 post "home/confirm" => "home#confirm" 13 post "home/thanks" => "home#thanks" 14 # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 15end
ContactMailer
1class ContactMailer < ApplicationMailer 2 3 default from: "#{@contact}@gmail.com" 4 default to: "********@gmail.com" #ここに自分のアドレスを入れています 5 6 def received_email(contact) 7 @contact = contact 8 mail_subject = "You got a message from #{@contact.name}" 9 mail(to: "iyasiken@gmail.com", subject: mail_subject) 10 end 11end
Development
1Rails.application.configure do 2config.action_mailer.smtp_settings = { 3 :enable_starttls_auto => true, 4 :address => 'smtp.gmail.com', 5 :port => '587', 6 :domain => 'smtp.gmail.com', 7 :authentication => 'plain', 8 :user_name => '********@gmail.com', #自分のアドレス 9 :password => '**************' #自分のパスワード 10} 11end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/19 09:32
2020/06/19 09:36
2020/06/19 13:38
2020/06/20 01:54
2020/06/20 01:57
2020/06/20 02:01
2020/06/20 02:10
2020/06/20 02:40
2020/06/20 15:50
2020/06/20 15:53
2020/06/20 15:55
2020/06/20 16:43
2020/06/21 07:57