如何使用PHPMailer将多个文件附加到两个不同的电子邮件中?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用PHPMailer将多个文件附加到两个不同的电子邮件中?相关的知识,希望对你有一定的参考价值。
我正在使用phpMailer向两个不同的收件人发送两封不同的电子邮件。我想附加用户上传到两封电子邮件的多个文件。
现在,多文件附件适用于第一封邮件,但不适用于第二封邮件。
使用我当前的代码,文件仅附加到第一个邮件,但没有附加到第二个邮件:
// First e-mail to recipient 1
$mail = new PHPMailer;
$mail->setFrom('example@example.com');
$mail->addAddress('recipient1@example.com');
$mail->Subject = 'Subject';
$mail->ishtml(true);
$mail->Body = '...';
// Attach multiple files one by one
for ($ct = 0; $ct < count($_FILES['userfile']['tmp_name']); $ct++) {
$uploadfile = tempnam(sys_get_temp_dir(), hash('sha256', $_FILES['userfile']['name'][$ct]));
$filename = $_FILES['userfile']['name'][$ct];
if (move_uploaded_file($_FILES['userfile']['tmp_name'][$ct], $uploadfile)) {
$mail->addAttachment($uploadfile, $filename);
} else {
$msg .= 'Failed to move file to ' . $uploadfile;
}
}
$mail->send(); // I only wrote this once because as it turns out, it sends both of the mails
// Second e-mail to recipient 2
$mail = new PHPMailer;
$mail->setFrom('example@example.com');
$mail->addAddress('recipient2@example.com');
$mail->Subject = 'Subject';
$mail->isHTML(true);
$mail->Body = '...';
// Attach multiple files one by one
for ($ct = 0; $ct < count($_FILES['userfile']['tmp_name']); $ct++) {
$uploadfile = tempnam(sys_get_temp_dir(), hash('sha256', $_FILES['userfile']['name'][$ct]));
$filename = $_FILES['userfile']['name'][$ct];
if (move_uploaded_file($_FILES['userfile']['tmp_name'][$ct], $uploadfile)) {
$mail->addAttachment($uploadfile, $filename);
} else {
$msg .= 'Failed to move file to ' . $uploadfile;
}
}
然后我尝试不将整个功能复制到两个邮件,但只添加
$mail->addAttachment($uploadfile, $filename);
到第二封电子邮件。但是,这仅添加第一个给定文件并复制此行使得同一文件被发送两次。
任何想法如何将多个(在我的情况下为3)文件附加到两个不同的电子邮件?
答案
我解决了这个问题:
// First e-mail to recipient 1
$mail = new PHPMailer;
$mail->setFrom('example@example.com');
$mail->addAddress('recipient1@example.com');
$mail->Subject = 'Subject';
$mail->isHTML(true);
$mail->Body = '...';
// Attach multiple files one by one
for ($ct = 0; $ct < count($_FILES['userfile']['tmp_name']); $ct++) {
$uploadfile = tempnam(sys_get_temp_dir(), hash('sha256', $_FILES['userfile']['name'][$ct]));
$filename = $_FILES['userfile']['name'][$ct];
if (move_uploaded_file($_FILES['userfile']['tmp_name'][$ct], $uploadfile)) {
$mail->addAttachment($uploadfile, $filename);
} else {
$msg .= 'Failed to move file to ' . $uploadfile;
}
}
// Altered e-mail to recipient 2
$mail->ClearAddresses(); // avoid recipient 1 getting this altered mail
$mail->addAddress('recipient2@example.com');
$mail->Subject = 'New subject overwriting the first one';
$mail->Body = 'New body overwriting the first one';
$mail->send(); // send both mails
这样,相同的邮件基本上被发送了两次,包括附件,但是通过覆盖e进行了一些更改。 G。主体和身体。
另一答案
您在发送第一封邮件时从临时存储中移动了上载的文件,因此在第二次尝试时它们不再存在。
move_uploaded_file($_FILES['userfile']['tmp_name'][$ct], $uploadfile)
您需要先移动上传的文件,然后使用变量$uploadfile
两次。
你应该把所有这些都放在一个功能中,这样你就不要重复自己了。
以上是关于如何使用PHPMailer将多个文件附加到两个不同的电子邮件中?的主要内容,如果未能解决你的问题,请参考以下文章
如何将两个或多个文件附加到 Android 上的 SEND 操作