代码:
<?php
try {
require_once "Mail.php";
require_once "Mail/mime.php";
$from = "support@domain.com";
$to = "user@gmail.com";
$subject = "Testing email please ignore";
$message = "Just testing";
$host = "godaddyhost";
$port = "465";
$username = "support@domain.com";
$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
答案 0 :(得分:1)
请安装“Net /”课程。
在Linux机器上使用此命令,sudo pear install Net_SMTP
或
pear install Net_SMTP
。 OR
下载以下内容,并将它们放入/ Net