我正在尝试通过 PHPMailer - http://phpmailer.worxware.com/发送带有附件的电子邮件。
$ mail-> AddAttachment ($ file, basename ($ file), "base64", mime_content_type ($ file));
附件总是正常的,有时会损坏(例如,从 300 kb 大小到只有 72 Kb)。具体来说,我尝试 PDF 文件。
谢谢你
我使用 SMTP
我正在尝试通过 PHPMailer - http://phpmailer.worxware.com/发送带有附件的电子邮件。
$ mail-> AddAttachment ($ file, basename ($ file), "base64", mime_content_type ($ file));
附件总是正常的,有时会损坏(例如,从 300 kb 大小到只有 72 Kb)。具体来说,我尝试 PDF 文件。
谢谢你
我使用 SMTP
在我的情况下,我直接提供了 pdf 的路径它对我来说很好。
$mail->AddAttachment('PDF FILE PATH');
请参考此链接Send File Attachment from Form Using phpMailer and PHP
http://www.ustrem.org/en/articles/send-mail-using-phpmailer-en/