use*_*767 2 php email image-uploading phpmailer
我使用的是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'],我没有收到邮件中的第一张图片.
| 归档时间: | 
 | 
| 查看次数: | 4324 次 | 
| 最近记录: |