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)