DSNEnvID

The DSNEnvID property specifies the message envelope ID as defined in RFC1891.

Settings and Return Values

Sets or returns a String value.

Remarks

The String may contain up to 100 characters (any ASCII characters between "!" (33) and "~" (126), except for "+" and "=")

DSN stands for "Delivery Status Notifications", it is an ESMTP extension that is implemented by most modern SMTP servers. See RFC1891 for details.

Examples

Sub Mail_OnStartRender()
    ' Save the database contact ID in the ESMTP DSN Envelope-ID to 
    ' update the database later using the DSN message

    Mail.DSNEnvID = Record.Fields("ContactID")
    Mail.DSNNotify = "SUCCESS,FAILURE"
End Sub

Applies To

Mail Object

 
©2001-2015 Active+ Software. All trademarks property of their owners.