# Preview all emails at http://localhost:3000/rails/mailers/contact_form_mailer
class ContactFormMailerPreview < ActionMailer::Preview
  def new_message_notify
    @contact_form = ContactForm.first
    ContactFormMailer.new_message_notify(@contact_form)
  end
end