Tagged Questions

6
votes
3answers
4k views

Create an EML (E-Mail) File in Java

Anybody knows how to do this? I got all the information of the email (body, subject, from , to, cc, bcc) and need to generate an eml-file out of it.
5
votes
1answer
136 views

How to Migrate EML data in chuck to Google Apps Mail using Google API ver 2?

I am migrating EML mails to Google Apps. When i try to Migrate a EML file with two attachment 2.1 MB and 1.96 MB. It is throwing exception: "The request was aborted: The request was canceled." I am ...
1
vote
2answers
70 views

PHP library to generate EML email files?

I'm trying to generate EML files from PHP. Is there any library that will allow me to easily create them? I could find some ActiveX component on the internet but would rather use something more ...
1
vote
1answer
131 views

Create an email object in java and save it to file

i need to backup the emails contained in a PST file (outlook storage). i'm using libpst which is the only free library i found on the web ( http://code.google.com/p/java-libpst/ ) so i can access all ...
1
vote
2answers
797 views

Open eml file in any mail client and take screenshot

I perform a lot of tests that create e-mail messages. I store each message in separate eml file. (I can change file extension if needed.) I would like to open each file in any mail client and take a ...
1
vote
6answers
5k views

Creation of a EML file with an attachment using JavaMail

I'll create a EML file with an attachment using JavaMail. I created a simple EML file successfully, but adding an attachment don't work properly. I'm going to add a PDF file. My EML file will be ...
1
vote
4answers
579 views

concatenating many email files with unix utils

I would like to know if there is any easy way to print multiple emails(about 200) so that they continue on as opposed to printing one per page. I have tried with thunderbird and evolution and this ...
0
votes
0answers
9 views

Tool for checking mail rules on eml files?

Is there a tool which can check a given EML file for rule validations like html_tiny_font and suggest solutuions how to fix those problems? There is one called MailingCheck, but its not really doing ...
0
votes
1answer
404 views

Java: How to create an EML or MSG file with attachment that can be opened in Outlook

I have a struts-action, and when that action is called i would like to create and return a simple eml or msg file that can be opened in outlook. This is can do just fine with a basic email-message. I ...
0
votes
1answer
305 views

RTF message bodies in EML files

We use the LumiSoft.NET MIME library to create EML files. These EML files are constructed by database values. The body of the email can be plain text, RTF, or HTML. We know when the body is HTML so, ...
0
votes
1answer
469 views

What MIME for reading .eml file?

I use ImapX library to save email to .eml file What MIME I can use to read it? MIME can read most of Content-Type. Thanks.
0
votes
1answer
157 views

.eml file common e-mail save format

Mozilla Thunderbird can save e-mails as .eml file. Is this a common e-mail format — can all other common e-mail clients open such a file?
0
votes
1answer
256 views

Send Mail from raw body for testing purposes

I am developing a PHP application that needs to retrieve arbitrary emails from an email server. Then, the message is completely parsed and stored in a database. Of course, I have to do a lot of tests ...
0
votes
1answer
278 views

Ideas for storing e-mail messages in a Delphi client server application

There are many suggestions here and there for storing e-mail messages. Somehow what I am doing is writing an Outlook addin to send emails from inbox/sent folders directly to my application. So only ...
0
votes
1answer
48 views

Sending generated email. Trouble with header

I'm trying to send some html in a generated email that looks something like this: X-Sender: XXXX@xxxx.com X-Receiver: XXXX@xxxx.com MIME-Version: 1.0 From: XXXXXXX@xxxx.com To: XXXXX@xxxx.com Date: 9 ...
0
votes
1answer
221 views

Using the Microsoft SMTP Server's Dropfolder

I have set up Microsoft SMTP server so it will store all incoming email in a dropfolder. I want to process, using c#, incoming mail based on the sender, recipient, and subject line. If possible, I ...