COLDFUSION :: 寻找上传图像然后作为电子邮件附件发送的指南

发布于 2024-09-27 14:22:24 字数 90 浏览 5 评论 0原文

我有一个可用于上传图片的表单,上传图片后将作为电子邮件附件发送到网站管理员,然后图像将从服务器中删除。

有什么指导方针吗?

提前致谢。

I have a form that can be used to uplocad pictures, and after uploading the pictures will be sent as e-mail attatchemnt to website admin and then the images will be deleted from Server.

Any guide line?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夜还是长夜 2024-10-04 14:22:24

您可以使用 Matt 建议的方法附加文件,也可以使用 cfmailparam 标记附加一个或多个文件,无论它们是否在磁盘上:

<cfmailparam file="MyFile.txt" content="#VariableWithContent#" disposition="attachment" />

如果您想在磁盘上附加一个或多个物理文件,您可以执行以下操作:

<cfmailparam file="c:\MyFile.txt" disposition="attachment" />

如果您不想在 CF 发送电子邮件后将文件保留在磁盘上,您可以将删除属性添加到 cfmailparam 标记,以便 CF 在发送电子邮件后删除它:

<cfmailparam file="c:\MyFile.txt" disposition="attachment" remove="true />

HTH,

Dan

You can attach the file using the method Matt suggested, or you can use a cfmailparam tag to attach one or more files, whether they're on disk or not:

<cfmailparam file="MyFile.txt" content="#VariableWithContent#" disposition="attachment" />

If you want to attach one or more physical files on disk you can do this:

<cfmailparam file="c:\MyFile.txt" disposition="attachment" />

If you don't want to keep the file on disk after CF is done sending the email, you can add the remove attribute to the cfmailparam tag to have CF get rid of it after the email is sent:

<cfmailparam file="c:\MyFile.txt" disposition="attachment" remove="true />

HTH,

Dan

风吹雪碎 2024-10-04 14:22:24

将文件附加到电子邮件非常简单,可以通过使用 cfmail 标记中的 mimeattach 属性来实现,如下所示:

<cfmail to="toAddress"
 from="fromAddress"
 subject="subject"
 type="text"
 mimeattach="path of file to attach, e.g: C:/generated/businessProposal.pdf">

Attaching the file to the email is straight forward, and is achieved by using the mimeattach attribute within the cfmail tag, like so:

<cfmail to="toAddress"
 from="fromAddress"
 subject="subject"
 type="text"
 mimeattach="path of file to attach, e.g: C:/generated/businessProposal.pdf">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文