我写了一些代码来发送电子邮件。现在我有多个使用PHPMailer发送电子邮件的脚本。所以我做的是在包含PHPMailerAutoLoad.php之后我在文件中写了所有的SMTP设置,但它仍然抛出错误'找不到类PHPMailer。'
以下是mailsetting.ph的代码片段,其中包含有关我的SMTP服务器的设置。
public function getProducibleQuantityAttribute()
{
$quantity = 0;
foreach($this->child_products_recursive as $child)
{
//The production expected of that child with its stock and producible take in account.
$child_producible = ($child->movements +
$child->producible_quantity)
/ $child->pivot->amount;
//The first value
if($quantity == 0)
$quantity = $child_producible;
//Takes the lowest
else if($child_producible < $quantity)
$quantity = $child_producible;
}
return $quantity ;
}
}
它说'致命错误:类'PHPMailer'在第3行的mailsetting.php中找不到',这显然意味着include语句正在正确执行。但Still Class PHPMailer不包括在内。 我也尝试过包含class.phpmailer.php文件
<?php
include("/../PHPMailer/PHPMailerAutoload.php");
$mail= new PHPMailer;
$mail->isSMTP();
$mail->Host = 'smtp.gmail.com';
$mail->SMTPAuth = true;
$mail->Username = 'username';
$mail->Password = 'password';
$mail->Port =465;
$mail->SMTPSecure = 'ssl';
$mail->From='info@vishalkhare.com';
$mail->FromName='Vishal Khare';
$mail->addReplyTo('info@vishalkhare.com', 'Information');
?>
它仍然无效。请帮帮我,让我知道如何在文件中包含PHPMailer类?
P.S。 - 它正在使用XAMPP服务器但不能正常工作,因为我将代码移动到网络服务器。一个godaddy Web服务器正好
答案 0 :(得分:0)
问题不在于加载PHPMailAutoLad。不幸的是Godaddy不支持gmail,yahoo,aol,live,hotmail等电子邮件,如果你使用linux cPanel主机面板然后在你的php文件中进行这些更改
$mail->Host = 'localhost';
$mail->Port = 25;
$mail->ssl = false;
$mail->authentication = false;