Mailer Error: in phpmailer function to send email
Mailer Error: in phpmailer function to send email
当我过去发送不带附件和简单文本正文的电子邮件时,出现消息无法发送的错误。邮件程序错误:无法访问文件:./attachment/
如果我评论我的附件功能,我的代码工作正常。
$mail->发送功能每次都尝试搜索附件文件夹。即使电子邮件中不存在文件,即文件仅包含文本。
<?php
include('db.php');
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require_once "vendor/autoload.php";
$id = $_GET['id'];
$query = "select * from access where uid='$id'";
$result = mysqli_query($conn,$query);
$row = mysqli_fetch_assoc($result);
$mail = new PHPMailer(true);
try {
$mail->setFrom('sender@gmail.com');
$mail->addAddress('receiver@gmail.com');
$array = explode(", ",$row['attachments']);
$count = count($array);
if($count > 0 && $row['attachments'] != 'null'){
for ($i=0; $i < $count ; $i++) {
$file_to_attach = './attachment/' . $array[$i];
$mail->addAttachment($file_to_attach, $array[$i]);
}
}
$mail->isHTML(true);
$mail->Subject = $row['subject'];
$mail->Body = $row['body'];
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
这已解决,我将我的变量放在我在 if 条件下为附件插入值的位置,我检查了数据库中的值不等于 null 以及我插入数据库的文件名。如果文件名不为空,那么我保存附件的代码将起作用,否则它将不起作用。
if($row['attachments']!=null)
{
$array = explode(", ",$row['attachments']);
$count = count($array);
if($count > 0 && $row['attachments'] != 'null'){
for ($i=0; $i < $count ; $i++) {
$file_to_attach = './attachment/' . $array[$i];
$mail->addAttachment($file_to_attach, $array[$i]);
}
}
}
您在 PHPMailer 中启用了异常,并且您正在使用失败的参数调用 addAttachments
(例如 null,或不存在的文件路径,或者您没有权限读),所以它会像预期的那样抛出异常。所以你有两件事要做:弄清楚为什么它不能读取文件,并添加处理失败的代码,如下所示:
if($count > 0 && $row['attachments'] != 'null'){
for ($i=0; $i < $count ; $i++) {
$file_to_attach = './attachment/' . $array[$i];
try {
$mail->addAttachment($file_to_attach, $array[$i]);
} catch (Exception $e) {
echo "Could not read file $file_to_attach)\n";
}
}
}
此代码允许发送无论如何继续 - 是否要这样做取决于您。
当我过去发送不带附件和简单文本正文的电子邮件时,出现消息无法发送的错误。邮件程序错误:无法访问文件:./attachment/
如果我评论我的附件功能,我的代码工作正常。
$mail->发送功能每次都尝试搜索附件文件夹。即使电子邮件中不存在文件,即文件仅包含文本。
<?php
include('db.php');
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require_once "vendor/autoload.php";
$id = $_GET['id'];
$query = "select * from access where uid='$id'";
$result = mysqli_query($conn,$query);
$row = mysqli_fetch_assoc($result);
$mail = new PHPMailer(true);
try {
$mail->setFrom('sender@gmail.com');
$mail->addAddress('receiver@gmail.com');
$array = explode(", ",$row['attachments']);
$count = count($array);
if($count > 0 && $row['attachments'] != 'null'){
for ($i=0; $i < $count ; $i++) {
$file_to_attach = './attachment/' . $array[$i];
$mail->addAttachment($file_to_attach, $array[$i]);
}
}
$mail->isHTML(true);
$mail->Subject = $row['subject'];
$mail->Body = $row['body'];
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
这已解决,我将我的变量放在我在 if 条件下为附件插入值的位置,我检查了数据库中的值不等于 null 以及我插入数据库的文件名。如果文件名不为空,那么我保存附件的代码将起作用,否则它将不起作用。
if($row['attachments']!=null)
{
$array = explode(", ",$row['attachments']);
$count = count($array);
if($count > 0 && $row['attachments'] != 'null'){
for ($i=0; $i < $count ; $i++) {
$file_to_attach = './attachment/' . $array[$i];
$mail->addAttachment($file_to_attach, $array[$i]);
}
}
}
您在 PHPMailer 中启用了异常,并且您正在使用失败的参数调用 addAttachments
(例如 null,或不存在的文件路径,或者您没有权限读),所以它会像预期的那样抛出异常。所以你有两件事要做:弄清楚为什么它不能读取文件,并添加处理失败的代码,如下所示:
if($count > 0 && $row['attachments'] != 'null'){
for ($i=0; $i < $count ; $i++) {
$file_to_attach = './attachment/' . $array[$i];
try {
$mail->addAttachment($file_to_attach, $array[$i]);
} catch (Exception $e) {
echo "Could not read file $file_to_attach)\n";
}
}
}
此代码允许发送无论如何继续 - 是否要这样做取决于您。