Message Property

Applies To

RoutingSlip object.

Description

Returns or sets the message text for the routing slip. This text is used as the body text of mail messages that are used to route the workbook. Read/write String.

See Also

Delivery property, Recipients method, ReturnWhenDone property, Subject property.

Example

This example sends Book1.xls to three recipients, one after another.

Workbooks("Book1.xls").HasRoutingSlip = True
With Workbooks("Book1.xls").RoutingSlip
    .Delivery = xlOneAfterAnother
    .Recipients = Array("Adam Bendel", "Jean Selva", "Bernard Gabor")
    .Subject = "Here is Book1.xls"
    .Message = "Here is the workbook. What do you think?"
End With
Workbooks("Book1.xls").Route