php mailer Mailer 错误:无法加载语言字符串:connect_host?
Posted
技术标签:
【中文标题】php mailer Mailer 错误:无法加载语言字符串:connect_host?【英文标题】:php mailer Mailer Error: Language string failed to load: connect_host? 【发布时间】:2011-04-06 18:12:05 【问题描述】:我不断收到此错误..
下面是我的代码:
<?php
ini_set("include_path", "phpmailer/");
require 'phpmailer/class.phpmailer.php';
$mailer = new PHPMailer();
$mailer->IsSMTP();
$mailer->Host = 'smtp.gmail.com';
$mailer->Port='465';
$mailer->SMTPAuth = TRUE;
$mailer->Username = 'mail@gmail.com'; // Change this to your gmail adress
$mailer->Password = '****'; // Change this to your gmail password
$mailer->From = 'maile@gmail.com'; // This HAVE TO be your gmail adress
$mailer->FromName = 'Belmer'; // This is the from name in the email, you can put anything you like here
$mailer->Body = 'This is the main body of the email';
$mailer->Subject = 'This is the subject of the email';
$mailer->AddAddress('another@ymail.com'); // This is where you put the email adress of the person you want to mail
if(!$mailer->Send())
echo "Message was not sent<br/ >";
echo "Mailer Error: " . $mailer->ErrorInfo;
else
echo "Message has been sent";
?>
有人知道这个错误吗?非常感谢您的回复。
【问题讨论】:
【参考方案1】:知道了!谢谢大家观看。
代码实际上没有问题,它必须是我本地服务器上的一些设置。我的解决方案是将文件上传到我的实时网络服务器,一切正常。
【讨论】:
以上是关于php mailer Mailer 错误:无法加载语言字符串:connect_host?的主要内容,如果未能解决你的问题,请参考以下文章
来自 php 表单的问题/错误,用于使用 php-mailer 库通过本地主机 Xampp 发送电子邮件
PHP Mailer:从 gmail 向 yahoo 发送邮件,无法识别代码
使用 Swift Mailer、GMail 和 PHP 发送电子邮件,权限被拒绝错误
Swift-Mailer 错误,“给定 [] 邮箱中的地址不符合 RFC”
Symfony:无法用实际定义“”替换别名“swiftmailer.mailer.default.transport.real”