1

我的网站上有一个表格供用户与我联系,并且在提交表格时会发送邮件。在我的配置/初始化程序中,我有一个 setup_mail 初始化程序:

ActionMailer::Base.smtp_settings = {
  :address              => "localhost",
  :port                 => 25
}

ActionMailer::Base.delivery_method = :sendmail

它在开发中工作。但与 SMTP 服务器(如 Gmail,你有 :login、:username、:password 等)相比,我觉得设置太少了,所以我担心它在生产中是否有效。实际从哪里:sendmail发送?对于我要发送的电子邮件,它将使用用户电子邮件作为发件人,我的电子邮件作为收件人。

4

0 回答 0