Outlook 97, send makro fra word
Jeg mangler en makro, der afsender mail i outlook 97 automatisk i forlængelse af en word makro (køres fra word97).Er der nogen der kan hjælpe?
Jeg har fundet følgende på nettet:
Sub SendMessage(DisplayMsg As Boolean, Receiver As String, Optional
AttachmentPath)
Dim objOutlook As Outlook.Application
Dim objOutlookMsg As Outlook.MailItem
Dim objOutlookRecip As Outlook.Recipient
Dim objOutlookAttach As Outlook.Attachment
Dim CallDescription As String
\' Create the Outlook session.
Set objOutlook = CreateObject(\"Outlook.Application\")
\' Create the message.
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
With objOutlookMsg
\' Add the To recipient(s) to the message.
Set objOutlookRecip = .Recipients.Add(Receiver)
objOutlookRecip.Type = olTo
\' Add the CC recipient(s) to the message.
Set objOutlookRecip = .Recipients.Add(\"an other person\")
objOutlookRecip.Type = olCC
\' Add the BCC recipient(s) to the message.
\' Set objOutlookRecip = .Recipients.Add(\"Andrew Fuller\")
\' objOutlookRecip.Type = olBCC
\' Add the From recipient(s) to the message.
\' objOutlookMsg.SentOnBehalfOfName = \"Me Myself and I\"
End sub
men dim erklæringerne kan jeg ikke få anerkendt når jeg forsøger at køre makroen.