#encoding:utf-8require ‘mail‘def send_email sum,fail,case_path,name,receive smtp = { :address => ‘smtp.mobanker.com‘, :port => 25, :domain => ‘mobanker.com‘, :user_name => ‘[email protected]‘, :password => ‘nl102thxfd2z!‘, :enable_starttls_auto => true, :openssl_verify_mode => ‘none‘ } Mail.defaults { delivery_method :smtp, smtp } mail = Mail.new do from ‘[email protected]‘ to receive subject ‘自动化测试报告‘ body "各位好: 附件为#{name.encode(‘utf-8‘)},请查看。 总结如下:本次回归共#{sum}个用例,失败#{fail}个 " add_file File.expand_path(case_path) end mail.deliver!end
时间: 2024-11-03 07:11:57