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
|
# File 'lib/xmlconv/util/mail.rb', line 10
def Mail.notify recipients, my_subject, my_body
recipients.flatten!
recipients.compact!
recipients.uniq!
return if(recipients.empty?)
puts "XmlConv::Util::Mail.notify #{ XmlConv::CONFIG.mail_from} -> #{recipients} subject: #{my_subject}"
options = { :address => XmlConv::CONFIG.smtp_server,
:port => XmlConv::CONFIG.smtp_port,
:domain => XmlConv::CONFIG.smtp_domain,
:user_name => XmlConv::CONFIG.smtp_user,
:password => XmlConv::CONFIG.smtp_pass,
:authentication => XmlConv::CONFIG.smtp_authtype,
:enable_starttls_auto => true
}
::Mail.defaults do
delivery_method :smtp, options
end unless ::Mail.delivery_method.is_a?(::Mail::TestMailer)
mail = ::Mail.deliver do
from XmlConv::CONFIG.mail_from
to recipients
subject my_subject
body my_body
end
puts "XmlConv::Util::Mail.notify failed #{mail.error_status}" if mail.error_status
end
|