Объект MsoEnvelope (Office)
Предоставляет доступ к функциям, которые позволяют отправлять документы в виде сообщений электронной почты непосредственно из приложений Microsoft Office.
Замечания
Используйте свойство MailEnvelope объекта Document , Chart или Worksheet (в зависимости от используемого приложения), чтобы вернуть объект MsoEnvelope .
Пример
В следующем примере активный документ Microsoft Word отправляется в виде сообщения электронной почты на адрес электронной почты, который передается в подпрограмму.
Sub SendMail(ByVal strRecipient As String)
'Use a With...End With block to reference the MsoEnvelope object.
With Application.ActiveDocument.MailEnvelope
'Add some introductory text before the body of the email.
.Introduction = "Please read this and send me your comments."
'Return a Microsoft Outlook MailItem object that
'you can use to send the document.
With .Item
'All of the mail item settings are saved with the document.
'When you add a recipient to the Recipients collection
'or change other properties, these settings persist.
.Recipients.Add strRecipient
.Subject = "Here is the document."
'The body of this message will be
'the content of the active document.
.Send
End With
End With
End Sub
См. также
Поддержка и обратная связь
Есть вопросы или отзывы, касающиеся Office VBA или этой статьи? Руководство по другим способам получения поддержки и отправки отзывов см. в статье Поддержка Office VBA и обратная связь.