summaryrefslogtreecommitdiff
path: root/lib/custodian/alerts/smtp.rb
blob: a9828f3a8d959472e0cbeb879054021e77a0dcba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
#  The SMTP-alerter.
#
module Custodian

  module Alerter

    class SMTP < AlertFactory

      #
      # The test this alerter cares about
      #
      attr_reader :test



      #
      # Constructor - save the test-object away.
      #
      def initialize( obj )
        @test = obj
      end




      def raise
        puts "Sould raise an alert via EMAIL"
        puts "Subject: #{test.target} failed #{test.get_type}-test - #{test.error()}"
      end




      def clear
        puts "Should clear an alert via EMAIL"
        puts "Subject: #{test.target} passed #{test.get_type}-test"
      end




      register_alert_type "smtp"




    end
  end
end