Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 634 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 634 Bytes

Build Status Scala 2.12

dmarc-parser

A Scala library for parsing DMARC aggregate reports as defined in RFC 7489

How to use

Simply pass a raw aggregate report email (headers and attachments included) into an instance of EmailParser like so:

val parser = new EmailParser
val email = "Your raw email here..."

val report = parser.parseEmail(email)