最近学习ruby 写了个 mail 发送 邮件 163 邮箱发送到我的 邮箱 测试 成功 分享一下

 

代码] [Ruby]代码

 
01 require 'rubygems'
02 require 'mail'
03  
04  
05 smtp = { :address => 'smtp.163.com', :port => 25, :domain => '163.com',:user_name => '18703609654', :password => '****', :enable_starttls_auto => true,:openssl_verify_mode => 'none' }
06 Mail.defaults { delivery_method :smtp, smtp }
07 mail = Mail.new do
08 from '18703609654@163.com'
09 to '945627077@qq.com'
10 subject 'test'
11 body 'body'
12 end
13 mail.deliver!