Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个电话系统,它调用 PHP 脚本在通话后发送电子邮件。现在我的服务器设置为使用 sendmail 发送它,但我正在切换到使用 Mutt 发送电子邮件。我的 php 中现在发送电子邮件的行是这样的:
执行(邮件($to,$subject,$message,$headers));
有没有等效的东西可以让我从脚本中通过 mutt 发送电子邮件?
谢谢!
您可以在 PHP 脚本中通过 shell 执行命令行
shell_exec('mutt -s "Subject" to@mail.com < message.txt');
http://php.net/manual/en/function.shell-exec.php