mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 15:24:48 +00:00
5 lines
135 B
Ruby
5 lines
135 B
Ruby
class ApplicationMailer < ActionMailer::Base
|
|
default from: ENV["EMAIL_SENDER"] if ENV["EMAIL_SENDER"].present?
|
|
layout "mailer"
|
|
end
|