PHPMailer中的多个图像附件

时间:2011-07-28 06:27:03

标签: php email phpmailer image-uploading

我使用的是PHPMailer类,它不支持多个图片上传。

$mailer = new phpmailer();
$mailer->IsMail();

$mailer->Subject = 'NewsLetter Request';            
$mailer->AddAddress('myemailid', 'Name');
$mailer->message_type =  "attachments";

$mailer->AddAttachment($_FILES["logo"]["tmp_name"],$_FILES["logo"]["name"]);
$mailer->AddAttachment($_FILES["logo2"]["tmp_name"],$_FILES["logo2"]["name"]);

$mailer->Body = $htmlBody;
$mailer->isHTML(true);

如果我发送的邮件是我收到的最后一张图片是$ _FILES ['logo2'],我没有收到邮件中的第一张图片。

1 个答案:

答案 0 :(得分:6)

如果您使用的是邮件程序v5 Multiple attachments not going with PHPmailer v5

,请参阅此解决方案