class ContactForm < ApplicationRecord
  self.table_name_prefix = "st_"
  after_commit on: [:create] do
    ContactFormMailer.new_message_notify(self).deliver_now
  end
end
