2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2014-12-27 15:25:58 +00:00
|
|
|
class Channel::Sendmail
|
2012-04-13 13:51:10 +00:00
|
|
|
def send(attr, channel, notification = false)
|
2012-12-24 13:55:43 +00:00
|
|
|
|
|
|
|
# return if we run import mode
|
|
|
|
return if Setting.get('import_mode')
|
|
|
|
|
2014-12-29 23:25:57 +00:00
|
|
|
mail = Channel::EmailBuild.build(attr, notification)
|
2012-04-13 13:51:10 +00:00
|
|
|
mail.delivery_method :sendmail
|
2013-06-12 15:59:58 +00:00
|
|
|
mail.deliver
|
2012-04-13 13:51:10 +00:00
|
|
|
end
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|