-
No Outlook, vá para Opções, Personalizar Faixa de Opções e marque a caixa ao lado de "Desenvolvedor" no painel à direita para ativar as opções do Desenvolvedor na Faixa de Opções.
-
Na faixa de opções, clique em Desenvolvedor e, em seguida, em Visual Basic.
-
Expanda "Projeto1" e clique duas vezes em "ThisOutlookSession".
-
Cole este código:
Sub dragonborn() 'Declare variables Dim fus As Object, ro As Object, dah As String, wuld As RegExp, na As MatchCollection 'Set up the regular expression defining what you want to look for Set wuld = New RegExp wuld.Pattern = "HTTP_REFERER\]\s*=>\s*(.+)" 'Get your "Inbox" mailbox folder for the current open account Set fus = GetNamespace("MAPI").GetDefaultFolder(olFolderInbox) 'Loop through each item in Inbox that's an email For Each ro In fus.Items On Error GoTo here If TypeOf ro Is Outlook.MailItem Then dah = ro.Body 'Attempt to match the email's body against your regex pattern Set na = wuld.Execute(dah) If na.Count > 0 Then 'Print the result to the Immediate Window (View -> Immediate Window) if there's a match Debug.Print na.Item(0).SubMatches(0) End If End If here: On Error GoTo 0 Next End Sub
-
Execute (tecla de atalho padrão: F5 )
-
Assista à sua janela imediata.