Skip to main content
Known Participant
September 12, 2009
Question

Return receipt in <cfmail>?

  • September 12, 2009
  • 1 reply
  • 1551 views

Is there some way to send an email through <cfmail> with a return receipt request?  Perhaps there is and I'm missing it.  Thanks.

    This topic has been closed for replies.

    1 reply

    Inspiring
    September 12, 2009

    Karolus,

    Add a <cfmailparam> tag to your <cfmail> process like below.

    It should do the same thing as setting the receipt request like

    in Outlook.

    <cfmail
        to="[send_to_email_address]"
        from="[from_email_address]"
        subject="[enter_subject]"
        server="[enter_mail_server]"
        username="[enter_username]"
        password="[enter_password]"
        type="html">

        <cfmailparam

          name="Disposition-Notification-To"

          value="[email_address_here]">

        - - or - -

        <cfmailparam

          name="Disposition-Notification-To"

          value=' "[friendly_title_here]" <email_address_here>'>

    Leonard

    KarolusAuthor
    Known Participant
    October 3, 2009

    Thank you.  I will try out your suggestion.  Much appreciated.