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:
Diffstat (limited to 'lib/gitlab/email/message/in_product_marketing/trial_short.rb')
-rw-r--r--lib/gitlab/email/message/in_product_marketing/trial_short.rb47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/gitlab/email/message/in_product_marketing/trial_short.rb b/lib/gitlab/email/message/in_product_marketing/trial_short.rb
new file mode 100644
index 00000000000..0fcd3fde4a6
--- /dev/null
+++ b/lib/gitlab/email/message/in_product_marketing/trial_short.rb
@@ -0,0 +1,47 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Email
+ module Message
+ module InProductMarketing
+ class TrialShort < Base
+ def subject_line
+ s_('InProductMarketing|Be a DevOps hero')
+ end
+
+ def tagline
+ nil
+ end
+
+ def title
+ s_('InProductMarketing|Expand your DevOps journey with a free GitLab trial')
+ end
+
+ def subtitle
+ s_('InProductMarketing|Start your trial today to experience single application success and discover all the features of GitLab Ultimate for free!')
+ end
+
+ def body_line1
+ ''
+ end
+
+ def body_line2
+ ''
+ end
+
+ def cta_text
+ s_('InProductMarketing|Start a trial')
+ end
+
+ def progress
+ super(total: 4, track_name: 'Trial')
+ end
+
+ def logo_path
+ 'mailers/in_product_marketing/trial-0.png'
+ end
+ end
+ end
+ end
+ end
+end