gitlabhq/app/mailers/notify.rb

72 lines
2.1 KiB
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class Notify < ActionMailer::Base
include Emails::Issues
include Emails::MergeRequests
include Emails::Notes
include Emails::Projects
2012-04-23 14:32:56 +02:00
add_template_helper ApplicationHelper
2012-08-09 05:02:55 +02:00
add_template_helper GitlabMarkdownHelper
2012-04-23 14:32:56 +02: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 if Gitlab.config.gitlab_on_non_standard_port?
2012-12-28 19:11:28 +01:00
default_url_options[:script_name] = Gitlab.config.gitlab.relative_url_root
2012-03-31 14:59:06 +02:00
default from: Gitlab.config.gitlab.email_from
2011-10-08 23:36:38 +02:00
2013-02-01 16:04:41 +01:00
# Just send email with 3 seconds delay
def self.delay
delay_for(2.seconds)
end
def new_user_email(user_id, password)
@user = User.find(user_id)
@password = password
mail(to: @user.email, subject: subject("Account was created for you"))
2012-08-29 08:49:39 +02:00
end
def new_ssh_key_email(key_id)
@key = Key.find(key_id)
@user = @key.user
mail(to: @user.email, subject: subject("SSH key was added to your account"))
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 18:46:40 +01: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 18:46:40 +01:00
subject = "GitLab"
subject << (@project ? " | #{@project.name_with_namespace}" : "")
subject << " | " + extra.join(' | ') if extra.present?
subject
end
2011-10-08 23:36:38 +02:00
end