TrackStatus Property
Applies To
RoutingSlip object.
Description
True if a mail message is sent back to the original sender each time the routed document is forwarded. Read/write Boolean before routing begins; read-only Boolean while routing is in progress.
See Also
Delivery property, Status property.
Example
This example adds a routing slip to the active document, adds two recipients, enables status tracking, and routes the document.
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
.AddRecipient Recipient:="James Allard"
.AddRecipient Recipient:="Rich Andrews"
.TrackStatus = True
.Parent.Route
End With