Consulting

Results 1 to 3 of 3

Thread: Scrape "Certified Mail" Permission from Outlook using VBA

  1. #1
    VBAX Newbie
    Joined
    Oct 2020
    Posts
    2
    Location

    Scrape "Certified Mail" Permission from Outlook using VBA

    Hi all, having a terrible time trying to figure this one out. When you send an email in Outlook, if you go under permissions and send it with certified mail, it will send to the recipient and display a little blurb about how it's certified mail along the top of the email.

    I need to scrape emails using VBA and record ones that are certified mail. This is what I have so far. I've tried Multipartsigned and other variations of message classes but nothing has worked so far, I'm hoping someone can help me out? Much appreciated for any ideas!

    Set OutlookSetFolder = OutlookSetNameSpace.GetDefaultFolder(6) ' 6 for Inbox folder

    Set objAllMails= OutlookSetFolder.Items

    MailProperty="'IPM.Note.SMIME'"

    MailPropertyValue= "John Smith"

    filter = "[MessageClass] = " & MailProperty & " AND [From] = '" & MailPropertyValue & "'"

    Set ObjFilteredMails=objAllMails.Restrict(filter)

  2. #2
    Knowledge Base Approver VBAX Guru macropod's Avatar
    Joined
    Jul 2008
    Posts
    4,435
    Location
    Cross-posted at: https://www.tek-tips.com/viewthread.cfm?qid=1806280
    Please read VBA Express' policy on Cross-Posting in Rule 3: http://www.vbaexpress.com/forum/faq...._new_faq_item3
    Cheers
    Paul Edstein
    [Fmr MS MVP - Word]

  3. #3
    VBAX Newbie
    Joined
    Oct 2020
    Posts
    2
    Location
    Thank you for letting me know, first time posting anywhere, will report the other post to be removed.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •