Options.SendMailAttach Property

Word Developer Reference

True if the Send To command on the File menu inserts the active document as an attachment to a mail message. Read/write Boolean.

Syntax

expression.SendMailAttach

expression   An expression that returns an Options object.

Remarks

False if the Send To command inserts the contents of the active document as text in a mail message.

Example

This example opens a new mail message that has the active document attached to it.

Visual Basic for Applications
  Options.SendMailAttach = True
ActiveDocument.SendMail

This example returns the state of the Mail as attachment option on the General tab of the Options dialog box.

Visual Basic for Applications
  Msgbox Options.SendMailAttach

See Also