trabajo-afectivo/app/models/channel/driver/sendmail.rb

21 lines
450 B
Ruby
Raw Normal View History

2016-10-19 03:11:36 +00:00
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
2015-08-28 00:53:14 +00:00
class Channel::Driver::Sendmail
def send(_options, attr, notification = false)
# return if we run import mode
return if Setting.get('import_mode')
mail = Channel::EmailBuild.build(attr, notification)
2016-12-02 11:24:00 +00:00
mail.delivery_method delivery_method
mail.deliver
end
2016-12-02 11:24:00 +00:00
private
def delivery_method
return :test if Rails.env.test?
:sendmail
end
end