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の行は次のとおりです。
exec(mail($to, $subject, $message, $headers));
スクリプト内から mutt を介してメールを送信できる同等のものはありますか?
ありがとう!
PHPスクリプトでシェル経由でコマンドラインを実行できます
shell_exec('mutt -s "Subject" to@mail.com < message.txt');
http://php.net/manual/en/function.shell-exec.php
I have code like this in my view model:
function ChatListViewModel(chats) { var self = this; self.newCommentText = ko.observable();