notify.rb 1.87 KB
Newer Older
gitlabhq's avatar
gitlabhq committed
1
class Notify < ActionMailer::Base
2 3 4 5
  include Emails::Issues
  include Emails::MergeRequests
  include Emails::Notes
  include Emails::Projects
6 7
  include Emails::Profile
  include Emails::Groups
8

gitlabhq's avatar
gitlabhq committed
9
  add_template_helper ApplicationHelper
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
10
  add_template_helper GitlabMarkdownHelper
11
  add_template_helper MergeRequestsHelper
gitlabhq's avatar
gitlabhq committed
12

13 14 15
  default_url_options[:host]     = Gitlab.config.gitlab.host
  default_url_options[:protocol] = Gitlab.config.gitlab.protocol
  default_url_options[:port]     = Gitlab.config.gitlab.port if Gitlab.config.gitlab_on_non_standard_port?
16
  default_url_options[:script_name] = Gitlab.config.gitlab.relative_url_root
17

18
  default from: Gitlab.config.gitlab.email_from
19
  default reply_to: "noreply@#{Gitlab.config.gitlab.host}"
gitlabhq's avatar
gitlabhq committed
20

21 22 23 24
  # Just send email with 3 seconds delay
  def self.delay
    delay_for(2.seconds)
  end
25

26 27
  private

28 29 30 31 32 33 34 35 36 37 38
  # Look up a User by their ID and return their email address
  #
  # recipient_id - User ID
  #
  # Returns a String containing the User's email address.
  def recipient(recipient_id)
    if recipient = User.find(recipient_id)
      recipient.email
    end
  end

39 40 41 42 43 44 45
  # Formats arguments into a String suitable for use as an email subject
  #
  # extra - Extra Strings to be inserted into the subject
  #
  # Examples
  #
  #   >> subject('Lorem ipsum')
46
  #   => "GitLab | Lorem ipsum"
47 48 49 50 51
  #
  #   # Automatically inserts Project name when @project is set
  #   >> @project = Project.last
  #   => #<Project id: 1, name: "Ruby on Rails", path: "ruby_on_rails", ...>
  #   >> subject('Lorem ipsum')
52
  #   => "GitLab | Ruby on Rails | Lorem ipsum "
53 54 55
  #
  #   # Accepts multiple arguments
  #   >> subject('Lorem ipsum', 'Dolor sit amet')
56
  #   => "GitLab | Lorem ipsum | Dolor sit amet"
57
  def subject(*extra)
58 59 60 61
    subject = "GitLab"
    subject << (@project ? " | #{@project.name_with_namespace}" : "")
    subject << " | " + extra.join(' | ') if extra.present?
    subject
62
  end
gitlabhq's avatar
gitlabhq committed
63
end