Ich habe es mal so probiert:
Dim ool As Outlook.Application
Dim oInspector As Outlook.Inspector
Dim oMail As Outlook.MailItem
’ Verweis zu Outlook + neue Nachricht
Set ool = CreateObject(„Outlook.Application“)
Set oMail = ool.CreateItem(olMailItem)
’ Befreff-Zeile
oMail.Subject = „Test Email“
’ An-Zeile (Empfänger)
oMail.To = „[email protected]“
oMail.Recipients.ResolveAll
oMail.Display
’ Texteingabe (Nachricht selbst)
oMail.Body = „Hier steht die Nachricht“
Set ool = Nothing
Set oInspector = Nothing
Set oMail = Nothing
Aber so kommt trotzdem die Meldung: Das im hintergrund ein programm auf outlook zugreifen möchte. Und ob ich es senden möchte.
Kann ich dies irgendwie abschalten?