5 lines
136 B
Ruby
5 lines
136 B
Ruby
class ApplicationMailer < ActionMailer::Base
|
|
default from: ENV.fetch("CLINCH_FROM_EMAIL", "clinch@example.com")
|
|
layout "mailer"
|
|
end
|