Tagged Questions

Questions on the process of extracting data from emails, including the handling of MIME types, attachments, and other embedded information.

learn more… | top users | synonyms

24
votes
5answers
4k views

Parse email content from quoted reply

I'm trying to figure out how to parse out the text of an email from any quoted reply text that it might include. I've noticed that usually email clients will put an "On such and such date so and so ...
3
votes
1answer
152 views

HeaderParseError in python

I get a HeaderParseError if I try to parse this string with decode_header() in python 2.6.5 (and 2.7). Here the repr() of the string: ...
3
votes
3answers
226 views

Want to automatically process email attachments based on username and subject

I'm seeking advice about setting up an email gateway so students can email me homework and the email will be processed automatically. For example, if a studenta@univ.edu emails me with a subject of ...
3
votes
5answers
456 views

Is there any open source tool that automatically 'detects' email threading like Gmail?

For instance, if the original message (message 1) is... Hey Jon, Want to go get some pizza? -Bill And the reply (message 2) is... Bill, Sorry, I can't make lunch today. Jonathon ...
2
votes
1answer
3k views

Java Email message Parser?

Is anyone familiar with a Java library that helps with parsing the fields (date, subject, from, to) of the email below? Message-ID: <19815303.1075861029555.JavaMail.ss@kk> Date: Wed, 6 Mar 2010 ...
2
votes
1answer
258 views

Existing tool or code to identify quoted text in emails

I am looking for a way to identify quoted text in emails. The goal is to add something along the lines of Gmails "show quoted text" feature to my web app which involves a mail handler bot. There are ...
1
vote
0answers
74 views

nodejs, redis and mailparser wont parse an email

I am using mailparser by andris(https://github.com/andris9/mailparser). I am sending an email via redis to an nodejs app. The mailparser for somereason is unable to parse it. What could be causing the ...
1
vote
2answers
49 views

.NET: Email Address Parsing - save with RegExp or just Try/Catch around Mail.MailAddressParser?

what would you recommend to get a simple result like "IsMailValid?" -> true|false? is it save to use a regExp is it better to use .NET's System...Mail.MailAddressParser with a simple try/catch ...
1
vote
3answers
294 views

How can I parse email text for components like <salutation><body><signature><reply text> etc?

I'm writing an application that analyzes emails and it would save me a bunch of time if I could use a python library that would parse email text down into named components like ...
1
vote
5answers
564 views

Parse email header with Regex in C#

I've got a webhook posting to a form on my web application and I need to parse out the email header addresses. Here is the source text: Thread-Topic: test subject Thread-Index: ...
1
vote
1answer
28 views

Conversion of \n and other escapes for email piped to php

I'm trying to process emails piped to php. The resulting email (parsed into a variable) in php has a bunch of \n marks that do not seem to resolve back into new lines, etc., when php simply re-pipes ...
1
vote
2answers
125 views

Is there a non-deprecated equivalent of rfc822.AddressList?

I need something like rfc822.AddressList to parse, say, the content of the "TO" header field of an email into individual addresses. Since rfc822 is deprecated in favor of the email package, I looked ...
1
vote
1answer
406 views

how to parse an email message and process various information

Is there any library to parse email messages? I know there are a lot. In addition to basic MIME parsing it should be able to parse things like: If the mail is a forwarded message: parse and tell me ...
0
votes
3answers
107 views

How do I parse emails in realtime as they are recieved

I need to build an email parsing script which would parse emails that would come into an inbox and dump the contents into a database, while at the same time make a curl request with details parsed ...
0
votes
0answers
234 views

Replace CDO & ADODB, email message file parsing

I use c# code below to open email message file (eml) and parse subject and body(need to parse eml file and find all web links in any). I have searched for native c# code to open textual or html ...
0
votes
1answer
151 views

How to parse a message to only extract the body, every time?

I'm coding an email piping and I'm getting the message and everything but I'm struggling when it comes to extracting the new user reply and add it to the ticket log. Some email clients add something ...
0
votes
1answer
569 views

Proper PHP way to parse email attachments from EML format

I have a file containing an email in "plain text MIME message format". I am not sure if this is the EML format. The email contains an attachment and I want to extract the attachment and create those ...
0
votes
0answers
202 views

Ideas about linux based solutions for parsing email storage files of MS Outlook - with support for most MS Outlook versions

I am not very sure how much this fits stackoverflow and I am not sure where else to ask. So, please let me know a better site if possible. Please do not downvote. I want to have a solution which has ...
0
votes
1answer
463 views

How do I get just the text content from a multipart email?

#!/usr/bin/php -q <?php $savefile = "savehere.txt"; $sf = fopen($savefile, 'a') or die("can't open file"); ob_start(); // read from stdin $fd = fopen("php://stdin", ...
0
votes
3answers
324 views

How to read any email account from a domain using C#?

I guess this is sort of two questions that are tied together. Related questions have discussed how to read and parse email using pop3. I need to be able to do this, however, I want this to be able to ...