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.
2
votes
2answers
790 views

How to open .eml files using Outlook MAPI in C#?

I have a C# application that reads .msg files and extracts the body and the attachments. But when I try to load a .eml file the application crashes. I am loading the files like this: MailItem ...
2
votes
1answer
477 views

c# outlook add-in convert msg to eml

Is there any way to read a mail within outlook (using an add-in) and save it as an EML file?
1
vote
0answers
52 views

Open .eml files in compose mode in outlook 2010

I want my users to be able to open eml files in compose mode in outlook 2010, by default it opens in readonly mode. Is there any way out? Use: We generate email templates which the users can download ...
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 ...
0
votes
1answer
76 views

Need to save a copy of email using imap php and then can be open in outlook express

I had IMAP PHP script which is connecting and reading emails from the mail box. What i am looking is that i want to save the email on server disk and name it something like testing.eml file. So when ...
0
votes
1answer
360 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
270 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
270 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
2answers
311 views

Why do I get “?” (question mark) replacement of Unicode characters for .EML files from Redemption on a VM?

Our application uses Redemption 4.4.0.1026 to save .MSG and .TXT versions of an .EML file. I get Unicode characters being replaced with question marks. I have made sure I installed all the language ...
0
votes
2answers
730 views

Convert multiple eml files to single PST in C#

I need to write a single function which will take multiple eml files ( may be from a single filesystem folder ) and convert them to a single PST file. Is it possible? if yes can someone provide a ...