@Brendan Short - Thanks for the question and using MS Q&A platform.
Microsoft Purview Information Protection connector does not support viewing file attachments sent via Outlook emails. The connector only supports streaming audit logs into the MicrosoftPurviewInformationProtection
standardized table, which contains information related to Microsoft Purview scanner events, sensitivity label events, protection events, and file deletion events.
However, you can use Microsoft 365 Defender to view file attachments sent via Outlook emails. Microsoft 365 Defender provides advanced hunting tables that allow you to query and analyze data from various Microsoft Defender products, including Defender for Office 365 (formerly known as Office 365 Advanced Threat Protection). The EmailAttachmentInfo
table in Defender for Office 365 provides information about files attached to emails, including the file name, file type, file size, and SHA256 hash value.
To view file attachments sent via Outlook emails in Microsoft 365 Defender, you can use the advanced hunting feature to create a query that filters for emails with attachments sent externally to your network. For example, the following query retrieves all emails with attachments sent to external recipients in the last 30 days:
EmailAttachmentInfo
| where AttachmentType != "Message"
| where IsExternal == true
| where Timestamp > ago(30d)
| project Timestamp, SenderFromAddress, RecipientEmailAddress, AttachmentFileName, AttachmentFileType, AttachmentFileSize, AttachmentSHA256Hash
I hope this helps! Let me know if you have any further questions.