在本地一个Rail应用程序运行良好,但在VPS服务器上,当我尝试通过Rails应用程序发送包含所有正确设置的电子邮件时,我在日志中收到此错误:
sh: 1: /usr/sbin/sendmail: not found
怎么解决?
您需要在VPS和本地计算机上安装sendmail软件包.假设你使用某种形式的Debian linux,你想运行:
原文链接:https://www.f2er.com/ubuntu/347472.htmlsudo apt-get install sendmail
在VPS上.