私のプロジェクトは、linode Web サーバー上にセットアップされ、zend フレームワーク 1.12 で開発されています。zend_mail() 関数を使用してメールを送信しようとしていますが、成功しません。エラーにはなりませんが、メールも送信できません。phpinfo でサーバー構成を確認しているときに、サーバーがディレクティブ付きの send mail ライブラリを持っていることがわかりました
sendmail_path /usr/sbin/sendmail -t -i
私のコードは以下の通りです
$mail = new Zend_Mail();
$mail->setBodyText('This is the text of the mail.')
->setFrom('somebody@example.com', 'Some Sender')
->addTo('somebody_else@example.com', 'Some Recipient')
->setSubject('TestSubject')
->send();
上記のコードの変更に関して誰か助けてくれますか