• Return Receipt flag

    By David Turner 1 decade ago
    <p style="margin-left: 40px;">
        Great script!<br/>
        I have only one question: if I choose &ldquo;return receipt&rdquo; in draft the agent doesn&rsquo;t include this in later e-mails.<br/>
        Can this be fixed somehow (we always send mails with return receipt)?</p>
    <p>
        &nbsp;</p>
    <p>
        This problem occurs in all versions up to and including release 1.3. I am surprised this is not included in the default &quot;Common&quot; MemoCopy class. The fix is straightforward, and should simply be a case of copying the &quot;DeliveryReport&quot; field (=&quot;B&quot;) to generated mails. I&#39;ll look at adding this enhancement for the next release.</p>
    

  • Delivery Options - Added in 1.3.1

    By David Turner 1 decade ago

    I have leveraged the ItemMapsStr of the MemoCopy class to copy all the Delivery Options fields I could find.

    What this means is that in addition to requested Return Receipt field, the Create Mail Merge script will now copy fields like Reply To, Reply Date and the High Importance flag from the master email template, where they have been provided.

     

        %REM
            Sub ItemMapsStr OVERRIDDEN
            Description: Property overridden to copy mail delivery options fields from the email template.
        %END REM
        Property Get ItemMapsStr As String
            ItemMapsStr = MemoCopy..ItemMapsStr & ";ReplyTo;DeliveryReport;ReturnReceipt;RR2" & _
            ";ReplyDate;DueDateTime;ExpireDate;Importance;tmpImp"
        End Property