这段代码似乎可以在我的mac localhost上的Xampp中运行,但它似乎无法在我的免费000webhost帐户上运行。我已经尝试过摆脱SSL,但它没有帮助。请记住,该程序从外部表单中获取变量。
<?php
$subject = htmlentities($_POST['subject']);
$email = $_POST['email'];
$message = htmlentities($_POST['message']);
require_once 'PHPMailer/PHPMailerAutoload.php';
$m = new PHPMailer;
$m->isSMTP();
$m->SMTPAuth = true;
//$m->SMTPDebug = 1;
$m->Host = 'smtp.gmail.com';
$m->Username = 'email-adress@gmail.com';
$m->Password = 'password';
$m->SMTPSecure = 'ssl';
$m->Port = 465;
$m->From = 'email-adress@gmail.com';
$m->FromName = 'William Green';
$m->addReplyTo('email-adress@gmail.com', 'William Green');
//$m->addCC('email2-address@gmail.com', 'Willliam green');
########################################
//email code
//$recipient = strip_tags($_POST['mailRecipient']);
//$name = strip_tags($_POST['recipientsName']);
$m->addAddress($email, $email);
//$m->Subject = strip_tags($_POST['mailSubject']);
//$m->Body = strip_tags($_POST['mailBody']);
$m->Subject = $subject;
$m->Body = $message;
//$m->AltBody = 'plain text version!';
###########################################
//var_dump($m->send());
if ($m->send())
{
echo '<h1 class="good">Email Sent!</h1>';
}
else
{
echo '<h1 class="bad">Email Not Sent!</h1>';
}
?>
答案 0 :(得分:7)
“但它似乎不适用于我的免费000webhost帐户”
答:他们不提供免费托管的SMTP。改为使用PHP的mail()
函数。
请注意其网站上SMTP服务器旁边的红色x
=&gt; http://www.000webhost.com/?
使用mail()
或支付以使用SMTP。
您可以在他们的网站上进行,或从控制面板中升级。
编辑(2016年9月16日):这个答案是在他们修改网站之前发布的。您可以在此处查看免费/付费服务的可用选项的网址https://www.000webhost.com/premium-web-hosting
这也适用于与数据库的远程连接。
这个答案是针对我今天看到的与我的编辑有关的问题编辑的。
答案 1 :(得分:0)
检查465端口是否已打开。如果没有,主机提供商需要更改设置。