about summary refs log tree commit diff stats
path: root/app/mailers/quote_mailer.rb
blob: 1f3bddd2edf48d4fd8da40ec90d578470cbdd977 (plain) (blame)
1
2
3
4
5
6
7
class QuoteMailer < ApplicationMailer
  def pending_quote_email
    @quote = params[:quote]
    # again, this is odd
    mail(to: User.first.email, subject: "[Four Island] New quote pending moderation")
  end
end