I'm using the Python email module to parse emails.
I need to be able to tell if an email is a "Delivery Status Notification", find out what the status is, and extract information on the email that failed, eg. the Subject.
The object I get after parsing with .parsestr(email) is like this:
{'Content-Transfer-Encoding': 'quoted-printable',
'Content-Type': 'text/plain; charset=ISO-8859-1',
'Date': 'Mon, 14 Mar 2011 11:26:24 +0000',
'Delivered-To': '[email protected]',
'From': 'Mail Delivery Subsystem <[email protected]>',
'MIME-Version': '1.0',
'Message-ID': '<[email protected]>',
'Received': 'by 10.142.13.8 with SMTP id 8cs63078wfm;\r\n Mon, 14 Mar 2011 04:26:24 -0700 (PDT)',
'Return-Path': '<>',
'Subject': 'Delivery Status Notification (Failure)',
'To': '[email protected]',
'X-Failed-Recipients': '[email protected]'}
Firstly, how do I tell that this is a DSN without using a regexp on the subject?
Secondly, how do I access the body of the email, and information such as the error that was returned by the mail server?
edit: worked out I need to use .get_payload() to get the contents of the message.
The email docs say:
The Parser class has no differences in its public interface. It does have some additional smarts to recognize message/delivery-status type messages, which it represents as a Message instance containing separate Message subparts for each header block in the delivery status notification
Update:
Basically, I need to be able to reliable detect that an email is a DSN, and then also to extract the original message so I can parse that with email.Parser() and get information about it.