Fügen Sie den Code ins Modul 'DieseOutlookSitzung' ein und starten Sie Outlook neu. Sobald Sie einer Email eine neue Anlage hinzufügen, wird der Name der Anlage automatisch zum Betreff der Email.
Private WithEvents Mail As Outlook.MailItem
Private WithEvents Inspectors As Outlook.Inspectors
Private Sub Application_Startup()
Set Inspectors = Application.Inspectors
End Sub
Private Sub Inspectors_NewInspector(ByVal Inspector As Inspector)
If TypeOf Inspector.CurrentItem Is Outlook.MailItem Then
Set Mail = Inspector.CurrentItem
End If
End Sub
Private Sub Mail_AttachmentAdd(ByVal Attachment As Attachment)
Mail.Subject = Attachment.DisplayName
End Sub