Php 将Word文档作为附件发送

Php 将Word文档作为附件发送,php,ms-word,content-disposition,Php,Ms Word,Content Disposition,我正在使用PHP动态创建Word文档,需要将其作为附件发送 是否有一种方法可以将其临时保存到服务器以发送电子邮件?有更好的办法吗 <?php header("Content-type: application/vnd.ms-word"); header("Content-Disposition: attachment;Filename=giftboxnote.doc"); ?> <html> <head> <meta http-equiv="Conten

我正在使用PHP动态创建Word文档,需要将其作为附件发送

是否有一种方法可以将其临时保存到服务器以发送电子邮件?有更好的办法吗

<?php
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=giftboxnote.doc");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
...other stuf...
</html>

…另一个stuf。。。
您应该看看Stackoverflow:还有