使用CFMAIL标签发送带有图像的电子邮件

问题描述

| 我的代码如下
<cfmail
    to=\"sender@xyz.com\"
    from=\"receiver@xyz.com\"
    subject=\"email with image\">

    <img src=\"cid:pClip\" width=\"350\" height=\"85\" alt=\"\" />

    there is an image above this msg.

    <cfmailparam file=\"#Expandpath(\'PaperClip.jpg\')#\"
        contentid=\"pClip\"
        disposition=\"inline\" />

  </cfmail>
我可以使用它,但是现在的问题是图像显示为附件,而不是内联(邮件客户端:Outlook 2010)。有什么建议么?     

解决方法

        您需要在cfmail标记中添加type属性
<cfmail
    to=\"sender@xyz.com\"
    from=\"receiver@xyz.com\"
    subject=\"email with image\"
    type=\"html\">