以附件形式发送 Word 文档

发布于 2024-11-30 05:45:15 字数 381 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必了 2024-12-07 05:45:15

您应该看看 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文