EmbedSmartTag Property

Microsoft Word Visual Basic

expression.EmbedSmartTag

expression    Required. 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