ruby 163 发送 邮件

来源:互联网 发布:淘宝饰品店推荐 知乎 编辑:程序博客网 时间:2024/05/29 01:51
require 'rubygems'require 'mail'smtp = { :address => 'smtp.163.com', :port => 25, :domain => '163.com', :user_name => '18703609654', :password => '****', :enable_starttls_auto => true, :openssl_verify_mode => 'none' }Mail.defaults { delivery_method :smtp, smtp }mail = Mail.new do  from '18703609654@163.com'  to '945627077@qq.com'  subject 'test'  body 'body'endmail.deliver!