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

in_product_marketing.rb « emails « mailers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0be9ec5f915fc5f1202b6e8f8926221039f4d782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

module Emails
  module InProductMarketing
    include InProductMarketingHelper

    FROM_ADDRESS = 'GitLab <team@gitlab.com>'.freeze
    CUSTOM_HEADERS = {
      'X-Mailgun-Track' => 'yes',
      'X-Mailgun-Track-Clicks' => 'yes',
      'X-Mailgun-Track-Opens' => 'yes',
      'X-Mailgun-Tag' => 'marketing'
    }.freeze

    def in_product_marketing_email(recipient_id, group_id, track, series)
      @track = track
      @series = series
      @group = Group.find(group_id)

      email = User.find(recipient_id).notification_email_for(@group)
      subject = subject_line(track, series)
      mail_to(to: email, subject: subject)
    end

    private

    def mail_to(to:, subject:)
      mail(to: to, subject: subject, from: FROM_ADDRESS, reply_to: FROM_ADDRESS, **CUSTOM_HEADERS) do |format|
        format.html { render layout: nil }
        format.text { render layout: nil }
      end
    end
  end
end