form mailer

This commit is contained in:
2023-02-09 12:49:33 +02:00
parent 454a3de3f2
commit a04c860354
8 changed files with 74 additions and 6 deletions

View File

@ -0,0 +1,8 @@
class FormMailer < ApplicationMailer
default from: "info@hubfeenix.fi" , bcc: "info@hubfeenix.fi"
def received(data)
@data = data
mail(subject: "We have received your request")
end
end