25 lines
647 B
Ruby
25 lines
647 B
Ruby
|
# frozen_string_literal: true
|
||
|
# rubocop:disable Style/Documentation
|
||
|
|
||
|
module Gitlab
|
||
|
module BackgroundMigration
|
||
|
module Mailers
|
||
|
class UnconfirmMailer < ::Notify
|
||
|
prepend_view_path(File.join(__dir__, 'views'))
|
||
|
|
||
|
def unconfirm_notification_email(user)
|
||
|
@user = user
|
||
|
@verification_from_mail = Gitlab.config.gitlab.email_from
|
||
|
|
||
|
mail(
|
||
|
template_path: 'unconfirm_mailer',
|
||
|
template_name: 'unconfirm_notification_email',
|
||
|
to: @user.notification_email,
|
||
|
subject: subject('GitLab email verification request')
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|