Skip to content

Latest commit

 

History

History
63 lines (39 loc) · 2.28 KB

Word.Document.SendForReview.md

File metadata and controls

63 lines (39 loc) · 2.28 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.SendForReview method (Word)
vbawd10.chm158007649
vbawd10.chm158007649
Word.Document.SendForReview
2f2cdd5c-eeca-d03f-bd58-b5586f8f461f
06/08/2017
medium

Document.SendForReview method (Word)

Sends a document in an email message for review by the specified recipients.

Syntax

expression. SendForReview( _Recipients_ , _Subject_ , _ShowMessage_ , _IncludeAttachment_ )

expression Required. A variable that represents a Document object.

Parameters

Name Required/Optional Data type Description
Recipients Optional Variant A string that lists the people to whom to send the message. These can be unresolved names and aliases in an email phone book or full email addresses. Separate multiple recipients with a semicolon (;). If left blank and ShowMessage is False, you will receive an error message and the message will not be sent.
Subject Optional Variant A string for the subject of the message. If left blank, the subject will be: Please review "file name".
ShowMessage Optional Variant A Boolean value that indicates whether the message should be displayed when the method is executed. The default value is True. If set to False, the message is automatically sent to the recipients without first showing the message to the sender.
IncludeAttachment Optional Variant A Boolean value that indicates whether the message should include an attachment or a link to a server location. The default value is True. If set to False, the document must be stored at a shared location.

Remarks

The SendForReview method starts a collaborative review cycle. Use the EndReview method to end a review cycle.

Example

This example automatically sends the current document as an attachment in an email message to the specified recipients.

Sub WebReview() 
 ActiveDocument.SendForReview _ 
 Recipients:="someone@example.com; amy jones", _ 
 Subject:="Please review this document.", _ 
 ShowMessage:=False, _ 
 IncludeAttachment:=True 
End Sub

See also

Document Object

[!includeSupport and feedback]