Phpmailer发送没有物理文件的邮件

时间:2018-04-13 09:58:13

标签: php phpmailer attachment

我使用Phpmailer发送电子邮件,但发送附件时遇到问题。我试过这个:

$mail->AddAttachment($_SERVER[DOCUMENT_ROOT].'/test.pdf','doklad.pdf');

和此:

$mail->AddAttachment($_SERVER[DOCUMENT_ROOT].'/test.pdf','doklad.pdf','base64','application/pdf');

和此:

$mail->AddStringAttachment(file_get_contents($_SERVER[DOCUMENT_ROOT].'/test.pdf'),'doklad.pdf','base64','application/pdf');

Phpmailer始终发送附件但没有物理文件。

你能帮我解决一下吗?

0 个答案:

没有答案