aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mail_handler/backends/mail_backend.rb
blob: ad13229233ae737a069a1f5aa284d8977112ee33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'mail'

module MailHandler
    module Backends
        module MailBackend

            def backend()
                'Mail'
            end
        end
    end
end