gitlab-org--gitlab-foss/app/mailers/notify.rb

64 lines
1.9 KiB
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
class Notify < ActionMailer::Base
include Emails::Issues
include Emails::MergeRequests
include Emails::Notes
include Emails::Projects
include Emails::Profile
include Emails::Groups
2012-04-23 12:32:56 +00:00
add_template_helper ApplicationHelper
2012-08-09 03:02:55 +00:00
add_template_helper GitlabMarkdownHelper
add_template_helper MergeRequestsHelper
2012-04-23 12:32:56 +00:00
default_url_options[:host] = Gitlab.config.gitlab.host
default_url_options[:protocol] = Gitlab.config.gitlab.protocol
default_url_options[:port] = Gitlab.config.gitlab.port unless Gitlab.config.gitlab_on_standard_port?
2012-12-28 18:11:28 +00:00
default_url_options[:script_name] = Gitlab.config.gitlab.relative_url_root
2012-03-31 12:59:06 +00:00
default from: Gitlab.config.gitlab.email_from
default reply_to: "noreply@#{Gitlab.config.gitlab.host}"
2011-10-08 21:36:38 +00:00
2013-02-01 15:04:41 +00:00
# Just send email with 3 seconds delay
def self.delay
delay_for(2.seconds)
end
private
# 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
# 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')
# => "GitLab | Lorem ipsum"
#
# # 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')
2012-12-31 17:46:40 +00:00
# => "GitLab | Ruby on Rails | Lorem ipsum "
#
# # Accepts multiple arguments
# >> subject('Lorem ipsum', 'Dolor sit amet')
# => "GitLab | Lorem ipsum | Dolor sit amet"
def subject(*extra)
2012-12-31 17:46:40 +00:00
subject = "GitLab"
subject << (@project ? " | #{@project.name_with_namespace}" : "")
subject << " | " + extra.join(' | ') if extra.present?
subject
end
2011-10-08 21:36:38 +00:00
end