このスクリプトをコピーして、メールからフォルダに個別に添付しました。
Public Sub ProcessarAnexo(Email As MailItem)
Dim diretorioAnex As String
diretorioAnex = "C:\Separados"
Dim MailID As String
Dim mailx As Outlook.MailItem
MailID = Email.EntryID
Set Mail = Application.Session.GetItemFromID(MailID)
For Each anexo In mailx.Attachments
If Rigth(anexo.FileName, 3) = "xml" Then
MsgBox (anexo.FileName)
anexo.SaveAsFile directorioanex & "\" & anexo.FileName
End If
Next
Set mailx = Nothing
End Sub
「今すぐルールを実行」からスクリプトを実行しようとしましたが、「Separados」フォルダに何も保存されません。