EmailOptions.EmbedSmartTag Property (Word)

This documentation is preliminary and is subject to change.

True for Microsoft Word to save the smart tag information in HTML e-mail messages. Read/write Boolean.

Syntax

expression .EmbedSmartTag

expression An expression that returns an EmailOptions object.

Remarks

Use the EmbedSmartTag property when Word is specified as your e-mail editor and messages are sent using HTML This allows recipients of the message to have access to the smart tag information without having the recognizer file registered on their computer. To make Word your default e-mail editor, change the necessary settings in Microsoft Outlook.

Example

This example enables embedding smart tag information in e-mail messages. This example assumes that Word is your default e-mail editor.

Sub EmbedSmartTagsInEmail() 
 Application.EmailOptions.EmbedSmartTag = True 
End Sub