Sub
CopySelectedEmailToFolderAndMoveToReceived()
Dim
olApp
As
Outlook.Application
Dim
olNamespace
As
Outlook.NameSpace
Dim
olSelection
As
Outlook.Selection
Dim
olMail
As
Outlook.mailItem
Dim
olMailCopy
As
Outlook.mailItem
Dim
olDestFolder
As
Outlook.MAPIFolder
Dim
olReceivedFolder
As
Outlook.MAPIFolder
Dim
folderName
As
String
Dim
foundFolder
As
Outlook.MAPIFolder
Set
olApp = Outlook.Application
Set
olNamespace = olApp.GetNamespace(
"MAPI"
)
Set
olSelection = olApp.ActiveExplorer.Selection
If
olSelection.Count = 0
Then
MsgBox
"Bitte wählen Sie eine E-Mail aus."
, vbExclamation
Exit
Sub
End
If
If
TypeOf
olSelection.Item(1)
Is
Outlook.mailItem
Then
Set
olMail = olSelection.Item(1)
folderName = InputBox(
"Bitte geben Sie den Namen des Zielordners ein:"
,
"Zielordner auswählen"
)
If
folderName =
""
Then
MsgBox
"Kein Ordnername eingegeben. Vorgang abgebrochen."
, vbExclamation
Exit
Sub
End
If
Set
foundFolder = FindFolder(olNamespace.folders, folderName)
If
Not
foundFolder
Is
Nothing
Then
Set
olMailCopy = olMail.Copy
olMailCopy.Move foundFolder
MsgBox
"Die E-Mail wurde erfolgreich in den Ordner '"
& foundFolder.Name &
"' kopiert."
, vbInformation
Set
olReceivedFolder = FindFolder(olNamespace.folders,
"_01_erhalten"
)
If
Not
olReceivedFolder
Is
Nothing
Then
olMail.Move olReceivedFolder
MsgBox
"Die E-Mail wurde erfolgreich in den Ordner '_01_erhalten' verschoben."
, vbInformation
Else
MsgBox
"Der Ordner '_01_erhalten' wurde nicht gefunden."
, vbExclamation
End
If
Else
MsgBox
"Der Ordner '"
& folderName &
"' wurde nicht gefunden."
, vbExclamation
End
If
Else
MsgBox
"Bitte wählen Sie eine E-Mail aus."
, vbExclamation
End
If
Set
olApp =
Nothing
Set
olNamespace =
Nothing
Set
olSelection =
Nothing
Set
olMail =
Nothing
Set
foundFolder =
Nothing
Set
olReceivedFolder =
Nothing
End
Sub
Function
FindFolder(folders
As
Outlook.folders, folderName
As
String
)
As
Outlook.MAPIFolder
Dim
folder
As
Outlook.MAPIFolder
Dim
subFolder
As
Outlook.MAPIFolder
On
Error
Resume
Next
For
Each
folder
In
folders
If
folder.Name = folderName
Then
Set
FindFolder = folder
Exit
Function
End
If
Set
subFolder = FindFolder(folder.folders, folderName)
If
Not
subFolder
Is
Nothing
Then
Set
FindFolder = subFolder
Exit
Function
End
If
Next
folder
End
Function