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

profile.rb « emails « mailers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a83b0831099783ca7853d1abb7943c9b0169958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Emails
  module Profile
    def new_user_email(user_id, token = nil)
      @current_user = @user = User.find(user_id)
      @target_url = user_url(@user)
      @token = token
      mail(to: @user.notification_email, subject: subject("Account was created for you"))
    end

    def new_email_email(email_id)
      @email = Email.find(email_id)
      @current_user = @user = @email.user
      mail(to: @user.notification_email, subject: subject("Email was added to your account"))
    end

    def new_ssh_key_email(key_id)
      @key = Key.find(key_id)
      @current_user = @user = @key.user
      @target_url = user_url(@user)
      mail(to: @user.notification_email, subject: subject("SSH key was added to your account"))
    end
  end
end