在PHPMailer中使用变量的内容作为附件

我想做这个:

$mail = new PHPMailer;
$mail->AddAttachment('text in file', 'file.txt');

所以附件可以有动态内容.我现在只能使用真实文件作为附件.显然,真实文件是静态的,我想动态生成一些内容并将其附加到邮件中.必须有一些方法来做到这一点,我想这不是那个模糊的功能.有人知道怎么样?

解决方法:

$mail->AddStringAttachment($string,$filename,$encoding,$type);

http://phpmailer.worxware.com/?pg=tutorial#3

上一篇:php – SMTP错误:无法连接到SMTP主机


下一篇:如何使用phpmailer逐个发送电子邮件到多个地址?