aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/mailers/asset_mailer.rb
blob: a59000382cd6f07c8361ac1abe9457f8197092fd (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
class AssetMailer < ActionMailer::Base
  self.mailer_name = "asset_mailer"

  def welcome
    mail
  end
end