如何使用 IMAP 和 PHP 为网络邮件创建附件下载链接?
我正在开发一个移动网络邮件项目,目前正在寻找一种方法来创建链接(或链接列表)以允许网络邮件用户下载邮件上的附件。它看起来像: 文件标题.ext
我已经可以获取附件并将其显示为一堵可怕的特殊字符墙,但我不能'显示电子邮件内容后找不到创建下载附件的链接的方法。
有人有猜测吗?
I'm working on a mobile webmail project, and I'm currently looking for a way to create a link (or a list of links) to allow webmail users to download attachments on mails. It would look like :<a href="???">title of the file.ext</a>
I can already get the attachments and display it as an awful wall of special chars, but I can't find the way to create a link to download the attachment after displaying the email content.
Does anyone have a guess ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将强制下载标头传递给客户端。
内容长度并不是完全必要的。
您必须创建一个 php 脚本,其链接如下:
PHP 脚本将仅发送上面的标头并打印文件的完整内容。
Pass the force-download header to the client.
The content-length is not entirely necessary.
You will have to create a php script which will be linked liked this:
And the PHP script will just send the headers above and print full contents of the file.