diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-12 16:43:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-12 16:43:49 +0000 |
commit | 0fe5c7b3e0d8875bff29e3a17230e94de416fa41 (patch) | |
tree | af4a139b892c95eea4f2688d5288a9dad4a77f95 /app/models/mailer.rb | |
parent | 843d04f0e3fa0f841dd4db68262a130714443a0a (diff) | |
download | redmine-0fe5c7b3e0d8875bff29e3a17230e94de416fa41.tar.gz redmine-0fe5c7b3e0d8875bff29e3a17230e94de416fa41.zip |
Added an option on 'My account' for users who don't want to be notified of changes that they make.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@899 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/mailer.rb')
-rw-r--r-- | app/models/mailer.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/models/mailer.rb b/app/models/mailer.rb index c17e2aa19..aa372120d 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -121,6 +121,14 @@ class Mailer < ActionMailer::Base default_url_options[:protocol] = Setting.protocol end + # Overrides the create_mail method to remove the current user from the recipients and cc + # if he doesn't want to receive notifications about what he does + def create_mail + recipients.delete(User.current.mail) if recipients && User.current.pref[:no_self_notified] + cc.delete(User.current.mail) if cc && User.current.pref[:no_self_notified] + super + end + # Renders a message with the corresponding layout def render_message(method_name, body) layout = method_name.match(%r{text\.html\.(rhtml|rxml)}) ? 'layout.text.html.rhtml' : 'layout.text.plain.rhtml' |