无法使用PHP中使用GoDaddy的电子邮件凭证发送邮件
代码:无法使用PHP中使用GoDaddy的电子邮件凭证发送邮件
<?php try {
require_once "Mail.php";
require_once "Mail/mime.php";
$from = "[email protected]";
$to = "[email protected]";
$subject = "Testing email please ignore";
$message = "Just testing";
$host = "godaddyhost";
$port = "465";
$username = "[email protected]";
$password = "password";
$headers = array ('From' => $from, 'To' => $to, 'Subject' => $subject);
$smtp = Mail::factory('smtp', array ('host' => $host, 'port' => $port, 'auth' => true, 'username' => $username, 'password' => $password));
$mail = $smtp->send($to, $headers, $message);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
} catch(Exception $e) {
echo $e;
}
?>
我现在面临上执行上述script
This page isn’t working localhost is currently unable to handle this request.
HTTP ERROR 500
在浏览器中的一个问题。如果我的评论我的代码从$mail = $smtp->send($to, $headers, $message);
,只是简单echo "something";
然后我可以看到我的浏览器上的东西
日志
[Wed Dec 27 17:07:36.033665 2017] [:error] [pid 28115] [client ::1:41546] PHP Warning: include_once(Net/SMTP.php): failed to open stream: No such file or directory in /usr/share/php/Mail/smtp.php on line 365 [Wed Dec 27 17:07:36.033715 2017] [:error] [pid 28115] [client ::1:41546] PHP Warning: include_once(): Failed opening 'Net/SMTP.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /usr/share/php/Mail/smtp.php on line 365
[Wed Dec 27 17:07:36.033741 2017] [:error] [pid 28115] [client ::1:41546] PHP Fatal error: Class 'Net_SMTP' not found in /usr/share/php/Mail/smtp.php on line 366
回答:
请安装“Net /”类。
使用此命令在Linux机器上,sudo pear install Net_SMTP
或
pear install Net_SMTP
的Windows机器。 OR
下载以下,并把它们放在/净
http://pear.php.net/package/Net_SMTP/download
http://pear.php.net/package/Net_Socket/download
以上是 无法使用PHP中使用GoDaddy的电子邮件凭证发送邮件 的全部内容, 来源链接: utcz.com/qa/264640.html