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

notify.rb « mailers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56e4de9b39226e2d366a68910e59da4967adaa0d (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
35
36
37
38
39
40
41
class Notify < ActionMailer::Base
  default_url_options[:host] = "gitlabhq.com"
  default from: "notify@gitlabhq.com"

  def new_user_email(user, password)
    @user = user
    @password = password
    mail(:to => @user.email, :subject => "gitlab | Account was created for you")
  end

  def new_issue_email(issue)
    @user = issue.assignee
    @project = issue.project
    @issue = issue

    mail(:to => @user.email, :subject => "gitlab | New Issue was created")
  end

  def note_wall_email(user, note)
    @user = user
    @note = note
    @project = note.project
    mail(:to => @user.email, :subject => "gitlab | #{@note.project.name} ")
  end

  def note_commit_email(user, note)
    @user = user
    @note = note
    @project = note.project
    @commit = @project.repo.commits(note.noteable_id).first
    mail(:to => @user.email, :subject => "gitlab | #{@note.project.name} ")
  end

  def note_issue_email(user, note)
    @user = user
    @note = note
    @project = note.project
    @issue = note.noteable
    mail(:to => @user.email, :subject => "gitlab | #{@note.project.name} ")
  end
end