1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/mailers/application_mailer.rb

8 lines
162 B
Ruby
Raw Normal View History

2018-11-22 14:58:12 -05:00
# frozen_string_literal: true
2018-11-22 14:33:08 -05:00
class ApplicationMailer < ActionMailer::Base
layout 'mailer'
2018-12-06 12:43:28 -05:00
default from: Rails.application.config.noreply_email_contact
2018-11-22 14:33:08 -05:00
end