我面临以下异常
无法连接到smtpout.asia.secureserver.net:465 [SMTP:无效 从服务器收到的响应代码(代码:-1,响应:)]
我正在使用PHP 7.1.12-3+ubuntu14.04.1+deb.sury.org+1 (cli)
和PEAR Version: 1.10.5
。
这是我的PHP代码:
<?php
try {
require_once "Mail.php";
$from = "support@domain.com";
$to = "user@gmail.com";
$subject = "Testing email please ignore";
$message = "Just testing";
$host = "smtpout.asia.secureserver.net";
$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;
}
?>
我是否需要更改Godaddy中的任何设置?
答案 0 :(得分:0)
如果您使用的是(Godaddy)电子邮件地址,则SMTP_SERVER应为localhost。 如果您使用谷歌服务器发送电子邮件,则相应地更改SMTP_SERVER。
希望这会有所帮助
$host: "localhost" //use godaddy server as smtp