我可以将php变量作为附件发送

时间:2013-03-10 15:29:10

标签: php email phpmailer

我正在使用liveoc创建一个pdf。我没有将文件保存到服务器就成功了,这就是目标。

我可以通过phpmailer附加我创建的文件,并通过电子邮件发送给它。

require("php_mailer/phpmailer.inc.php");

$mail = new phpmailer;
$mail->From = "noreply@credireto.com";
$mail->FromName = "Crédireto";
$mail->Host = "smtp1.site.com;smtp2.site.com";  // specify main and backup server
$mail->AddAddress("$email");   // name is optional
$mail->WordWrap = 50;    // set word wrap
$mail->AddAttachment("$data","Simulação.pdf");  // add attachments
$mail->IsHTML(true);    // set email format to HTML
$mail->Subject = "Simulação Crédireto";
$mail->Body = filegetcontents("emailagradecimento");
$mail->Send(); // send message

变量$ data包含我要发送的文件。

1 个答案:

答案 0 :(得分:-2)

我解决了它。创建临时文件并发送附件。如果您需要任何帮助,请告诉我。