Do not send an email with no recipient, cc or bcc (closes #743).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1174 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
328df74dd1
commit
8531e176aa
|
@ -122,7 +122,16 @@ class Mailer < ActionMailer::Base
|
||||||
subject 'Redmine test'
|
subject 'Redmine test'
|
||||||
body :url => url_for(:controller => 'welcome')
|
body :url => url_for(:controller => 'welcome')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Overrides default deliver! method to prevent from sending an email
|
||||||
|
# with no recipient, cc or bcc
|
||||||
|
def deliver!(mail = @mail)
|
||||||
|
return false if (recipients.nil? || recipients.empty?) &&
|
||||||
|
(cc.nil? || cc.empty?) &&
|
||||||
|
(bcc.nil? || bcc.empty?)
|
||||||
|
super
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
def initialize_defaults(method_name)
|
def initialize_defaults(method_name)
|
||||||
super
|
super
|
||||||
|
|
Loading…
Reference in New Issue