hubfeenix.fi/app/mailers/form_mailer.rb

9 lines
220 B
Ruby
Raw Normal View History

2023-02-09 11:49:33 +01:00
class FormMailer < ApplicationMailer
default from: "info@hubfeenix.fi" , bcc: "info@hubfeenix.fi"
def received(data)
@data = data
2023-02-09 12:19:20 +01:00
mail(to: data['email'] , subject: "We have received your request")
2023-02-09 11:49:33 +01:00
end
end