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

8 lines
215 B
Ruby
Raw Normal View History

class Channel::Sendmail < Channel::EmailBuild
include UserInfo
def send(attr, channel, notification = false)
mail = build(attr, notification)
mail.delivery_method :sendmail
mail.deliver
end
end