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