Rails 指定 SMTP 邮件服务器端口

2015-02-10 0 932
Rails 指定 SMTP 邮件服务器端口
require 'net/smtp'

message = <<MESSAGE_END
From: Private Person <me@privacy.net>
To: Author of Beginning Ruby <test@rubyinside.com>
Subject: SMTP e-mail test

This is a test e-mail message.
MESSAGE_END

Net::SMTP.start('mail.your-domain.com', 25, 'localhost', 'username', 'password', :plain)
 do |smtp|
  smtp.send_message message, 'me@privacy.net', 'test@r.com'
end

遇见资源网 ruby Rails 指定 SMTP 邮件服务器端口 http://www.ox520.com/16252.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务