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") %>
|
||||
|
||||
Loading…
Reference in new issue