我的网站上有一个表单供用户与我联系,并在表单提交时提供邮件。在我的config / initializers中,我有一个setup_mail intializer:
ActionMailer::Base.smtp_settings = {
:address => "localhost",
:port => 25
}
ActionMailer::Base.delivery_method = :sendmail
它在开发中有效。但是与SMTP服务器(比如Gmail,你有:login,:username,:password等)相比,我觉得设置很少,所以我担心它是否适用于生产。 :sendmail
实际发送的位置是什么?对于我想发送的电子邮件,它将使用用户电子邮件作为发件人,将我的电子邮件用作接收者。