Sub GetEmail_1()
'Fuente: http://stackoverflow.com/questions/8322432/using-visual-basic-to-access-subfolder-in-inbox
'fuente: http://www.snb-vba.eu/VBA_Outlook_external_en.html
'fuente: https://support.microsoft.com/en-us/kb/208520
Dim olApp As Outlook.Application
Dim objNS As Outlook.Namespace
Dim olFolder As Outlook.MAPIFolder
Dim msg As Outlook.MailItem
'
Application.ScreenUpdating = False
Set olApp = Outlook.Application
Set objNS = olApp.GetNamespace("MAPI")
'
Set olFolder = objNS.Folders("[B][COLOR=#ff0000]disks[/COLOR][/B]")
Set MyItems = olFolder.Items
i = 2
Columns("B:C").Clear
NumItems = olFolder.Items.Count
f = 1
On Error Resume Next
For n = 1 To NumItems
Cells(f, "A") = MyItems(n).SenderName
Cells(f, "B") = MyItems(n).Subject
Cells(f, "C") = MyItems(n).body
f = f + 1
Next
Columns("B:C").WrapText = False
Application.ScreenUpdating = True
MsgBox "End"
End Sub