我在localhost上安装了phpList
来测试它,但我无法发送任何邮件
是否可以从localhost执行此操作。我正在使用WAMP。
我已成功安装并配置了一些选项。
这些是我做过的其他配置..
define("PHPMAILERHOST",'smtp.gmail.com:465');
$phpmailer_smtpuser = '######@gmail.com';
$phpmailer_smtppassword = '#####';
define('PHPMAILERPORT',465);
任何帮助都将受到高度赞赏。 : - )
答案 0 :(得分:0)
使用PHPList 3.0.5
config/config.php
摘录:
define("PHPMAILER",1);
define("PHPMAILERHOST",'smtp.gmail.com');
define("PHPMAILERPORT",'465');
$phpmailer_smtpsecure = 'ssl';
$phpmailer_smtpuser = 'user@gmail.com';
$phpmailer_smtppassword = 'pass';
$phpmailer_smtpport = '465';
不幸的是,我还要编辑admin/class.phplistmailer.php
:
$this->SMTPSecure = $GLOBALS['phpmailer_smtpsecure'];
$this->SMTPAuth = true;
$this->Helo = getConfig("website");
我没有替换PHPList 3.0.5附带的PHPMailer 5.2.5
答案 1 :(得分:0)
如果你只想测试这个而不是在工作localhost上使用它作为生产,我建议你安装smtp4dev。该软件捕获在本地SMTP端口(25)上发送的所有电子邮件,您可以在Outlook或任何要测试的电子邮件软件中看到它们。