Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) Outlook -- Search Messages in a Particular FolderDemonstrates search the messages in a particular Outlook mailbox folder. This uses the OData $filter and $search system query options. See OData System Query Options for general information.
Also see OData URL Conventions for information about $filter, $search and other query options. This example demonstrates the following searches:
This example applies to: Exchange Online | Office 365 | Hotmail.com | Live.com | MSN.com | Outlook.com | Passport.com
' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim http As Chilkat.Http Set http = Chilkat.NewHttp ' Use your previously obtained access token here: ' See the following examples for getting an access token: ' Get Microsoft Graph OAuth2 Access Token (Azure AD v2.0 Endpoint). ' Get Microsoft Graph OAuth2 Access Token (Azure AD Endpoint). ' Refresh Access Token (Azure AD v2.0 Endpoint). ' Refresh Access Token (Azure AD Endpoint). http.AuthToken = "MICROSOFT_GRAPH_ACCESS_TOKEN" Dim sbResponse As Chilkat.StringBuilder Set sbResponse = Chilkat.NewStringBuilder ' In this example, we'd like to get the messages in the folder "/Inbox", ' but we must specify the corresponding folder_id. The best way to do this is to create ' a local map of folderPaths-to-folderIds. ' This example does it: Create Outlook Folder Map) Dim htFolderMap As Chilkat.Hashtable Set htFolderMap = Chilkat.NewHashtable Dim sbMap As Chilkat.StringBuilder Set sbMap = Chilkat.NewStringBuilder Dim success As Boolean success = sbMap.LoadFile("qa_data/outlook/folderMap.xml","utf-8") success = htFolderMap.AddFromXmlSb(sbMap) ' Get the ID for the "/Inbox" folder: folderId = htFolderMap.LookupStr("/Inbox") If (htFolderMap.LastMethodSuccess <> True) Then Debug.Print "Folder ID not found" Exit Sub End If success = True Dim json As Chilkat.JsonObject Set json = Chilkat.NewJsonObject json.EmitCompact = False success = http.SetUrlVar("folder_id",folderId) success = http.SetUrlVar("select","subject,from") ' ----------------------------------------------------------------------------------------------------- ' Only return emails from "chilkat.support@gmail.com" success = http.SetUrlVar("filter","from/emailAddress/address eq 'chilkat.support@gmail.com'") ' To return the full content of each email, omit the "&select=..." part of the URL. success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$filter={$filter}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Only return emails where the subject contains "Amazon" success = http.SetUrlVar("filter","contains(subject,'Amazon')") success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$filter={$filter}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Only return emails where the subject starts with "this email" and the from address is support@chilkatsoft.com ' (the startswith function is case insensitive) success = http.SetUrlVar("filter","startswith(subject,'this email') and (from/emailAddress/address eq 'support@chilkatsoft.com')") success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$filter={$filter}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Only return emails received within the last 24 hours Dim sbExpression As Chilkat.StringBuilder Set sbExpression = Chilkat.NewStringBuilder success = sbExpression.Append("receivedDateTime ge ") Dim dt As Chilkat.CkDateTime Set dt = Chilkat.NewCkDateTime success = dt.SetFromCurrentSystemTime() success = dt.AddDays(-1) success = sbExpression.Append(dt.GetAsTimestamp(False)) success = http.SetUrlVar("filter",sbExpression.GetAsString()) success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$filter={$filter}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Only return emails received in October 2016 Dim dtObj As Chilkat.DtObj Set dtObj = Chilkat.NewDtObj dtObj.Year = 2016 dtObj.Month = 10 dtObj.Day = 1 dtObj.Utc = True success = dt.SetFromDtObj(dtObj) sbExpression.Clear success = sbExpression.Append("(receivedDateTime ge ") success = sbExpression.Append(dt.GetAsTimestamp(False)) success = sbExpression.Append(") and (receivedDateTime lt ") dtObj.Month = 11 success = dt.SetFromDtObj(dtObj) success = sbExpression.Append(dt.GetAsTimestamp(False)) success = sbExpression.Append(")") ' This is the expression we just built: (receivedDateTime ge 2016-10-01T00:00:00Z) and (receivedDateTime lt 2016-11-01T00:00:00Z) Debug.Print sbExpression.GetAsString() success = http.SetUrlVar("filter",sbExpression.GetAsString()) success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$filter={$filter}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Return unread emails success = http.SetUrlVar("filter","isRead eq false") ' success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$filter={$filter}&$select={$select}",sbResponse); If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Return emails with a plain-text or HTML body containing the phrase "Outlook 365" success = http.SetUrlVar("filter","contains(body/content,'Office 365')") success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$filter={$filter}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Use the $search query option instead of $filter. ' $search is a free-text search over whatever fields the server deems appropriate, such as in the subject, ' body, address fields, etc. ' Search for the word Amazon success = http.SetUrlVar("search","Amazon") success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$search={$search}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() ' ----------------------------------------------------------------------------------------------------- ' Search for chilkatsoft.com ' Some chars, such as the "." make it necessary to enclose the search expression in double-quotes. success = http.SetUrlVar("search","""chilkatsoft.com""") success = http.QuickGetSb("https://graph.microsoft.com/v1.0/me/mailFolders/{$folder_id}/messages?$search={$search}&$select={$select}",sbResponse) If ((success <> True) And (http.LastStatus = 0)) Then Debug.Print http.LastErrorText Exit Sub End If success = json.LoadSb(sbResponse) Debug.Print json.Emit() |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.