mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 07:09:39 +02:00
4 lines
135 B
Ruby
4 lines
135 B
Ruby
class ApplicationMailer < ActionMailer::Base
|
|
default from: ENV["EMAIL_SENDER"] if ENV["EMAIL_SENDER"].present?
|
|
layout "mailer"
|
|
end
|