Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-07 12:09:59 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-07 12:09:59 +0300
commitdc62bfce8b1c716decb59a8d3fae4985d5490025 (patch)
tree56ff6438f9592ecf75ad90568ae50003b0b49678 /app/mailers
parenta608e1204587c25a55d69fd8ac624f42e45c831e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/mailers')
-rw-r--r--app/mailers/emails/in_product_marketing.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/mailers/emails/in_product_marketing.rb b/app/mailers/emails/in_product_marketing.rb
index a0d4f335cf4..ba94c0c8cac 100644
--- a/app/mailers/emails/in_product_marketing.rb
+++ b/app/mailers/emails/in_product_marketing.rb
@@ -21,6 +21,12 @@ module Emails
mail_to(to: email, subject: @message.subject_line)
end
+ def account_validation_email(pipeline, recipient_email)
+ @message = Gitlab::Email::Message::AccountValidation.new(pipeline)
+
+ mail_to(to: recipient_email, subject: @message.subject_line)
+ end
+
private
def mail_to(to:, subject:)