以附件形式发送 Word 文档
我正在使用 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>
I am creating a Word document dynamically using PHP, and I need to send it as an attachment.
Is there a way to do this that will save it to the server temporarily in order to email it? Is there a better way?
<?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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该看看 programmershelp 和 Stackoverflow:在 Linux 中使用 PHP 创建 Word 文档 以及 那里。
You should have a look on programmershelp and on Stackoverflow: Create Word Document using PHP in Linux and also there.