internetee-registry/app/mailers/application_mailer.rb
2021-06-07 16:27:53 +03:00

27 lines
1.2 KiB
Ruby

class ApplicationMailer < ActionMailer::Base
append_view_path Rails.root.join('app', 'views', 'mailers')
layout 'mailer'
before_action :verification_before_send
def registrant_confirm_url(domain:, method:)
token = domain.registrant_verification_token
base_url = ENV['registrant_portal_verifications_base_url']
"#{base_url}/confirmation/#{domain.name_puny}/#{method}/#{token}"
end
def verification_before_send
p '==================================================================='
p '==================================================================='
p '==================================================================='
p '==================================================================='
p '==================================================================='
p mail
p '==================================================================='
p '==================================================================='
p '==================================================================='
p '==================================================================='
p '==================================================================='
end
end