4

私のコードは以下の通りです、

<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>

私はこれを機能させましたが、問題は画像がインラインではなく添付ファイルとして表示されていることです(メールクライアント:Outlook2010)助言がありますか?

4

1 に答える 1

7

cfmailタグにtype属性を追加する必要があります

<cfmail
    to="sender@xyz.com"
    from="receiver@xyz.com"
    subject="email with image"
    type="html">
于 2011-06-13T20:49:51.077 に答える