1234567891011121314151617181920 |
- # Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
- 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)
- mail.delivery_method delivery_method
- mail.deliver
- end
- private
- def delivery_method
- return :test if Rails.env.test?
- :sendmail
- end
- end
|