我相信我在使用 PEAR 邮件队列教程的 .config 文件时遇到了问题。我检查了我的路径,它们很好。
<?php
require_once "Mail/Queue.php";
$db_options['type'] = 'db';
$db_options['dsn'] = 'mysql://mysqlusername:mysqlpasswd@localhost/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 */
?>
szerne 在 bluehostforum 上有一个类似的帖子。 http://www.bluehostforum.com/archive/index.php/t-19791.html 它看起来与我的并没有太大的不同,但使用的是 mdb2 容器。我不确定是否有任何细节很重要。任何帮助,将不胜感激!我很困惑。非常感谢,乔治