Ruby发送邮件(163邮箱)

[b]Ruby1.8.6发送163邮件到gmail[/b]
require 'net/smtp'

msg = [ "Subject: Test\n", "\n", "Now is the time\n" ]
Net::SMTP.start( 'smtp.163.com', 25, "163.com", "[email protected]", "******", :login ) do |smtp|
smtp.sendmail( msg, '[email protected]', '[email protected]' )
end


[b]Net::SMTP.start(server, port, domain, acct, passwd, authtype)[/b]参数解释
[table]
|server|163 smtp服务器域名
|port|163 smtp服务器端口
|domain|163 email服务器域,就是@符号后面的字符串
|acct|163邮箱用户名
|passwd|163邮箱密码
|authtype|邮件发送验证方式,163是密码验证
[/table]

[b]smtp.sendmail(msg, from, to)[/b]参数解释
[table]
|msg|message主题和内容
|from|从哪个邮件帐号发送
|to|发送到哪个邮件帐号,我这里发送到我的gmail邮箱
[/table]

你可能感兴趣的:(Ruby&Rails)