#vba #outlook
#vba #outlook
Вопрос:
Следил за этим и пытался использовать это для сохранения файлов. https://www.rondebruin.nl/win/s1/outlook/saveatt.htm
Я получаю ошибку компиляции всякий раз, когда пытаюсь запустить макрос.
Обыскал весь Интернет, и несколько человек утверждают, что этот код работает для них, но не для меня.
Я убедился, что папка, на которую я ссылаюсь, была создана. Также убедился, что вложенная папка; «MyFolder» была создана в моем почтовом ящике.
Option Explicit
Sub Test()
'Arg 1 = Folder name of folder inside your Inbox
'Arg 2 = File extension, "" is every file
'Arg 3 = Save folder, "C:UsersRontest" or ""
' If you use "" it will create a date/time stamped folder for you
in your "Documents" folder
' Note: If you use this "C:UsersRontest" the folder must exist.
SaveEmailAttachmentsToFolder "MyFolder", "",
"C:Usersmy_nameDocumentsProjectX"
End Sub
Я ожидал, что вложения появятся. Но похоже, что функция SaveEmailAttachmentsToFolder не работает.
Комментарии:
1. Вы добавили весь
SaveEmailAttachmentsToFolder
код в свой модуль? Это последняя половина или около того связанной веб-страницы.2. Вот и все, БигБен. Я не понимал, что это было в 2-х сегментах. Спасибо!
Ответ №1:
Все следующее должно быть под 1 модулем
public Sub Test()
SaveEmailAttachmentsToFolder "MyFolder", "", "C:Usersmy_nameDocumentsProjectX"
End Sub
Public Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As String, _
ExtString As String, DestFolder As String)
Dim ns As Namespace
Dim Inbox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim MyDocPath As String
Dim I As Integer
Dim wsh As Object
Dim fs As Object
On Error GoTo ThisMacro_err
Set ns = GetNamespace("MAPI")
Set Inbox = ns.GetDefaultFolder(olFolderInbox)
Set SubFolder = Inbox.Folders(OutlookFolderInInbox)
I = 0
' Check subfolder for messages and exit of none found
If SubFolder.Items.Count = 0 Then
MsgBox "There are no messages in this folder : " amp; OutlookFolderInInbox, _
vbInformation, "Nothing Found"
Set SubFolder = Nothing
Set Inbox = Nothing
Set ns = Nothing
Exit Sub
End If
'Create DestFolder if DestFolder = ""
If DestFolder = "" Then
Set wsh = CreateObject("WScript.Shell")
Set fs = CreateObject("Scripting.FileSystemObject")
MyDocPath = wsh.SpecialFolders.Item("mydocuments")
DestFolder = MyDocPath amp; "" amp; Format(Now, "dd-mmm-yyyy hh-mm-ss")
If Not fs.FolderExists(DestFolder) Then
fs.CreateFolder DestFolder
End If
End If
If Right(DestFolder, 1) <> "" Then
DestFolder = DestFolder amp; ""
End If
' Check each message for attachments and extensions
For Each Item In SubFolder.Items
For Each Atmt In Item.Attachments
If LCase(Right(Atmt.FileName, Len(ExtString))) = LCase(ExtString) Then
FileName = DestFolder amp; Item.SenderName amp; " " amp; Atmt.FileName
Atmt.SaveAsFile FileName
I = I 1
End If
Next Atmt
Next Item
' Show this message when Finished
If I > 0 Then
MsgBox "You can find the files here : " _
amp; DestFolder, vbInformation, "Finished!"
Else
MsgBox "No attached files in your mail.", vbInformation, "Finished!"
End If
' Clear memory
ThisMacro_exit:
Set SubFolder = Nothing
Set Inbox = Nothing
Set ns = Nothing
Set fs = Nothing
Set wsh = Nothing
Exit Sub
' Error information
ThisMacro_err:
MsgBox "An unexpected error has occurred." _
amp; vbCrLf amp; "Please note and report the following information." _
amp; vbCrLf amp; "Macro Name: SaveEmailAttachmentsToFolder" _
amp; vbCrLf amp; "Error Number: " amp; Err.Number _
amp; vbCrLf amp; "Error Description: " amp; Err.Description _
, vbCritical, "Error!"
Resume ThisMacro_exit
End Sub
Обязательно обновите MyFolder
имя вложенной папки, которая у вас есть в Outlook
Чтобы загрузить xls
, xlsx
или pdf
файл, обновите следующее. ->
""
Пример
"MyFolder", "xls", "C:Usersmy_nameDocumentsProjectX"
Ответ №2:
Это ниже работает для меня. Это уменьшено по сравнению с тем, что вы пытаетесь сделать, но я надеюсь, что это поможет.
Sub xWCG_Proc_Item(xMitem как Outlook.Почтовый элемент) Уменьшить значение xAttCount как целое Затемнить i как целое число 'Не забудьте включить ссылку на библиотеку объектов Microsoft Outlook 16.0 в Сервис -> Ссылки xAttCount = CInt(xMitem.Вложения.Количество) Если xAttCount = 0, то Выйдите из Sub Завершить, если Для i = 1 к xAttCount xMitem.Вложения.Элемент (i).SaveAsFile ("c:docume ~ 1 jaywei ~ 1 mydocu ~ 1 " xMitem.Вложения.Item(i).Имя файла) Далее я Завершение Sub