2011-10-08 23:36:38 +02:00
|
|
|
class Notify < ActionMailer::Base
|
2013-03-19 19:00:41 +01:00
|
|
|
include Emails::Issues
|
|
|
|
include Emails::MergeRequests
|
|
|
|
include Emails::Notes
|
|
|
|
include Emails::Projects
|
2013-01-09 06:44:05 +01:00
|
|
|
|
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
|
|
|
|
2012-12-15 01:16:25 +01: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
|
|
|
|
2012-12-15 01:16:25 +01: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
|
2012-10-13 20:55:50 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-03-19 19:00:41 +01:00
|
|
|
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
|
2012-10-13 20:55:50 +02:00
|
|
|
|
2012-08-21 05:04:53 +02:00
|
|
|
private
|
|
|
|
|
2012-08-21 05:18:57 +02:00
|
|
|
# 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
|
|
|
|
|
2012-08-21 05:04:53 +02:00
|
|
|
# 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')
|
2012-09-06 09:50:47 +02:00
|
|
|
# => "GitLab | Lorem ipsum"
|
2012-08-21 05:04:53 +02:00
|
|
|
#
|
|
|
|
# # 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 "
|
2012-08-21 05:04:53 +02:00
|
|
|
#
|
|
|
|
# # Accepts multiple arguments
|
|
|
|
# >> subject('Lorem ipsum', 'Dolor sit amet')
|
2012-09-06 09:50:47 +02:00
|
|
|
# => "GitLab | Lorem ipsum | Dolor sit amet"
|
2012-08-21 05:04:53 +02:00
|
|
|
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
|
2011-12-18 15:07:47 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|