我有一个非常简单的例子,可以使用Coldfusion 11 cfmail标签将图像作为附件发送。
<cfmail to="example@domain.com" from="example@domain.com" subject="Test" type="html">
<cfmailparam
file="www.example.com/image.png"
disposition="attachment; filename=""test.png""">
</cfmail>
我希望附件被调用&#34; test.png&#34;在收件人电子邮件客户端中查看时。
我在Gmail中收到电子邮件时工作正常,但Outlook 2013(和Office 365网络客户端)保留了&#34; image.png&#34;附件名称。
我是否正确使用了&#34;配置&#34;属性?
答案 0 :(得分:1)
如果disposition
不适合您,请尝试合并file
和content
。
<cfmailparam
file="test.png"
content="#fileRead( 'image.png' )#" >