ruby rework with contact form
All checks were successful
Build and Deploy to Production / build (push) Successful in 51s
Build and Deploy to Production / deploy (push) Successful in 34s

This commit is contained in:
Sergei Poljanski 2026-05-05 00:45:27 +04:00
commit 1ab09043ee
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
26 changed files with 932 additions and 221 deletions

72
lib/mailer.rb Normal file
View file

@ -0,0 +1,72 @@
require 'mail'
module Mailer
module_function
def configure!
Mail.defaults do
delivery_method :smtp,
address: ENV.fetch('SMTP_ADDR'),
port: ENV.fetch('SMTP_PORT').to_i,
user_name: ENV.fetch('SMTP_USER'),
password: ENV.fetch('SMTP_PASSWORD'),
authentication: :plain,
enable_starttls_auto: true
end
end
def notify_owner(name:, email:, subject:, message:, ip:)
from = ENV.fetch('MAIL_FROM')
to = ENV.fetch('MAIL_TO')
subj = subject.to_s.strip.empty? ? 'Contact form submission' : subject.to_s.strip
body = <<~BODY
New contact form submission on asxp.io.
From: #{name} <#{email}>
Subject: #{subj}
IP: #{ip}
Time: #{Time.now.utc.iso8601}
---
#{message}
BODY
Mail.deliver do
from from
to to
reply_to email
subject "[asxp.io] #{subj}"
body body
end
end
def confirm_visitor(name:, email:, subject:, message:)
from = ENV.fetch('MAIL_FROM')
to = ENV.fetch('MAIL_TO')
subj = subject.to_s.strip.empty? ? 'your message' : subject.to_s.strip
body = <<~BODY
Hi #{name},
Thanks for contacting IE Sergei Poljanski. I've received your message
and will get back to you as soon as possible.
For your records, here's what you sent:
Subject: #{subj}
#{message}
--
IE Sergei Poljanski
ie@asxp.io · https://asxp.io
BODY
Mail.deliver do
from from
to email
reply_to to
subject 'Thanks for contacting IE Sergei Poljanski'
body body
end
end
end