PEARメールキューチュートリアルの.configファイルに問題があると思います。 私は自分のパスをチェックしていて、それは問題ありません。PEARメールキューチュートリアルの設定に問題がある
<?php
require_once "Mail/Queue.php";
$db_options['type'] = 'db';
$db_options['dsn'] = 'mysql://mysqlusername:[email protected]/mail';
$db_options['mail_table'] = 'mail_queue';
$mail_options['driver'] = 'smtp';
$mail_options['host'] = 'smtp.tiscali.co.uk';
$mail_options['port'] = 25;
$mail_options['localhost'] = 'localhost'; //optional Mail_smtp parameter
$mail_options['auth'] = false;
$mail_options['username'] = 'username';
$mail_options['password'] = 'passwd';
?>
私はsmtp.tiscali.co.ukを使用して独自にSMTPメールを送信できます。 データベースメールにテーブルを慎重に入力しました。 適切なMySQL GRANT権限を追加しました。 私のコードはここでadd_message.phpで死にますが、私はmail_queueステートメントが入力されていることを知っています。
<?php
include './config.php';
/* we use the db_options and mail_options here */
$mail_queue =& new Mail_Queue($db_options, $mail_options);
/* the rest */
?>
bluehostforumにはszerneと似た投稿があります。 http://www.bluehostforum.com/archive/index.php/t-19791.html これは、 鉱山とあまり違いはありませんが、mdb2コンテナを使用しています。詳細が重要であるかどうかはわかりません。 ご協力いただければ幸いです!私は困惑している。多くのありがとう、ジョージ
あなたはszerneから投稿へのリンクを追加できますか? – quickshiftin