PHPMailer 返回 500:来自托管网站的内部服务器错误
PHPMailer returning 500: Internal server error from a hosted website
我正在努力学习网络开发。
我买了一个域名 "test.com" 并托管了它。
我正在尝试实现从网站发送电子邮件的功能。
服务器上的特定 php 文件如下所示:
<?php
require_once "Mail.php";
$from = '<xyz.gmail.com>';
$to = '<xyz@abc.com>';
$subject = 'Hi!';
$body = "Hi,\n\nHow are you?";
$headers = array(
'From' => $from,
'To' => $to,
'Subject' => $subject
);
$smtp = Mail::factory('smtp', array(
'host' => 'ssl://smtp.gmail.com',
'port' => '465',
'auth' => true,
'username' => 'xyz@gmail.com',
'password' => 'somePassowrd'
));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo('<p>' . $mail->getMessage() . '</p>');
} else {
echo('<p>Message successfully sent!</p>');
}
?>
如果我 运行 来自我 PC 终端的代码,也会发送电子邮件。
从我的 PC 访问 localhost/testemail.php 或 0.0.0.0/testemail.php 也成功发送了一封电子邮件。
现在,如果我通过 ssh 进入托管文件的计算机(Ubuntu 14.04 服务器),运行 "php testemail.php" 则电子邮件已成功发送。
最后,我还尝试使用以下方法从服务器终端进行 url 调用:
xdg-open http://localhost/testemail.php
即使在那种情况下,我也会在 xyz@abc.com
上收到一封电子邮件
但是,从浏览器进行测试。com/testemail。php 导致 500 内部服务器错误。
我已经尝试点击 test.com/someotherfile.php?somequeryparams 并获得预期的响应。所以服务器 运行 正常,但无法发送电子邮件。
请建议我能做什么。
谢谢。
我发现在 运行 上,当从外部浏览器调用时,php 代码无法访问 pear 包。
我在 apache2 中添加了 pear 的位置,php 包含路径。
这修复了它。
我正在努力学习网络开发。 我买了一个域名 "test.com" 并托管了它。
我正在尝试实现从网站发送电子邮件的功能。
服务器上的特定 php 文件如下所示:
<?php
require_once "Mail.php";
$from = '<xyz.gmail.com>';
$to = '<xyz@abc.com>';
$subject = 'Hi!';
$body = "Hi,\n\nHow are you?";
$headers = array(
'From' => $from,
'To' => $to,
'Subject' => $subject
);
$smtp = Mail::factory('smtp', array(
'host' => 'ssl://smtp.gmail.com',
'port' => '465',
'auth' => true,
'username' => 'xyz@gmail.com',
'password' => 'somePassowrd'
));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo('<p>' . $mail->getMessage() . '</p>');
} else {
echo('<p>Message successfully sent!</p>');
}
?>
如果我 运行 来自我 PC 终端的代码,也会发送电子邮件。
从我的 PC 访问 localhost/testemail.php 或 0.0.0.0/testemail.php 也成功发送了一封电子邮件。
现在,如果我通过 ssh 进入托管文件的计算机(Ubuntu 14.04 服务器),运行 "php testemail.php" 则电子邮件已成功发送。
最后,我还尝试使用以下方法从服务器终端进行 url 调用: xdg-open http://localhost/testemail.php 即使在那种情况下,我也会在 xyz@abc.com
上收到一封电子邮件但是,从浏览器进行测试。com/testemail。php 导致 500 内部服务器错误。
我已经尝试点击 test.com/someotherfile.php?somequeryparams 并获得预期的响应。所以服务器 运行 正常,但无法发送电子邮件。
请建议我能做什么。
谢谢。
我发现在 运行 上,当从外部浏览器调用时,php 代码无法访问 pear 包。 我在 apache2 中添加了 pear 的位置,php 包含路径。
这修复了它。