我知道这个问题已在此处发布,但所提供的所有解决方案对我来说都不起作用。 我已经安装了Postfix并成功测试了它:
date | mail -s test myemail@example.com
我的config / environments / production.rb有:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "localhost",
:port => 25,
:domain => "myhost",
}
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
我甚至改变了:smtp with:sendmail
config.action_mailer.delivery_method = :sendmail
它也不起作用。 /var/log/mail.log没有显示任何我的应用程序日志。 Postfix已启动并正常运行,非常感谢任何帮助。
Ps:我在这里缺少什么?我只想从我的应用程序发送电子邮件而不接收它们。