mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
359 B
17 lines
359 B
# frozen_string_literal: true
|
|
|
|
class ApplicationMailer < ActionMailer::Base
|
|
default from: 'DocuSeal <hi@docuseal.co>'
|
|
layout 'mailer'
|
|
|
|
register_interceptor ActionMailerConfigsInterceptor
|
|
|
|
before_action do
|
|
ActiveStorage::Current.url_options = Docuseal.default_url_options
|
|
end
|
|
|
|
def default_url_options
|
|
Docuseal.default_url_options
|
|
end
|
|
end
|