Sha256: 9574147e0eb82a4a5f4da4a6bd9badcbc4f536602aececb4acfc5d75a2c31551
Contents?: true
Size: 443 Bytes
Versions: 20
Compression:
Stored size: 443 Bytes
Contents
# encoding: utf-8 module Mail # The deliverable class provides the way mail will send an email out when you # are using the Mail.deliver! &block command or when you call Mail.deliver!(message) # # The default delivery is SMTP, localhost, port 25. You can change this through the # Mail.defaults call.s module Deliverable def self.perform_delivery!(mail) Mail.defaults.delivery_method.deliver!(mail) end end end
Version data entries
20 entries across 20 versions & 1 rubygems