Update contact form so it confirms the message was sent

main
rebuilt 3 years ago
parent 7f433cf223
commit f8c91add3e

@ -1,5 +1,20 @@
class HomeController < ApplicationController
skip_before_action :verify_authenticity_token
def index
@contact = Contact.new
end
def create
puts '***************************** Inside home controller *****************************************'
flash.now[:success] = 'Message sent!'
@contact = Contact.new(params[:contact])
@contact.request = request
if @contact.deliver
flash.now[:success] = 'Message sent!'
else
flash.now[:error] = 'Could not send message'
end
render :index
end
end

@ -1,17 +1,17 @@
class Contact < MailForm::Base
attribute :name, validate: true
attribute :email, validate: /\A([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})\z/i
attribute :email, validate: /\A([\w.%+\-]+)@([\w\-]+\.)+(\w{2,})\z/i
attribute :organization
attribute :message
attribute :nickname, captcha: true
attribute :message, validate: true
attribute :nickname, captcha: true
# Declare the e-mail headers. It accepts anything the mail method
# in ActionMailer accepts.
def headers
{
:subject => "Contact Form Inquiry",
:to => ENV['CONTACT_FORM_DESTINATION'] || "memoryman51@hotmail.com",
:from => %("#{name}" <#{email}>)
subject: 'Contact Form Inquiry',
to: ENV['CONTACT_FORM_DESTINATION'] || 'memoryman51@hotmail.com',
from: %("#{name}" <#{email}>)
}
end
end

@ -1,6 +1,6 @@
<div class="container pb-5">
<h1>Contact Form</h1>
<%= form_for @contact do |f| %>
<%= form_for @contact, url: home_index_path, method: :create, data: { turbo: false } do |f| %>
<div class="col-md-6">
<%= f.label :name %></br>
<%= f.text_field :name, required: true, class: "contact-form-text-area" %></br>

@ -1 +1 @@
<%= render(partial: "new") %>
<%= render(partial: "contacts/contact_form") %>

@ -40,4 +40,4 @@
<!-- Contact section-->
<%# <%= link_to "Contact Form", new_contact_path %1> %>
<%= render partial: "contacts/new" %>
<%= render partial: "contacts/contact_form" %>

@ -13,7 +13,6 @@
<body>
<%= render partial: 'layouts/nav' %>
<%= yield %>
<!-- Footer-->

@ -8,6 +8,7 @@ Rails.application.routes.draw do
resources :work_with_ecp, only: :index
resources :construction, only: :index
resources :district_leader, only: :index
resources :home, only: %i[index create]
resources :contacts, only: %i[new create]

Loading…
Cancel
Save