Filename extension used by many email clients including Microsoft Outlook Express, Windows Mail and Mozilla Thunderbird. The files are plain text in MIME format, containing the email header as well as the message contents and attachments in one or more of several formats.
Questions tagged [eml]
241 questions
0
votes
1 answer
Is there a way to prevent Outlook from removing line breaks from emails?
When someone hits the "email" button on my web page, in jQuery, I put together some plain text and open it with:
document.location.href = "mailto:?subject=" + emailSubject + "&body=" + emailContent;
However, Outlook strips the email of all line…

ash
- 49
- 1
- 1
- 7
0
votes
1 answer
is there a RFC for msg file formats to save tasks of exchange online?
Basically, I'm attempting to work with MSG files and I want to know if these files are pretty standard across different mail servers... basically, is there an RFC on MSG files just like there is one for email addresses and other topics?
So options…

Kartik Thakurela
- 141
- 1
- 11
0
votes
1 answer
Outlook file format
When you drag a file form outlook inbox to say your desktop, it saves it as a MSG file, is it possible to change for file type? Ideally I would like pdf, but EML would also be exceptable.
It is so i can attached it to another PDF or phrase it in a…

user3714154
- 47
- 6
0
votes
1 answer
How to create an in memory eml file with JavaScript?
How can I create a client side in-memory eml file? I've come across numerous suggestions. But none, out of the box, work in my setup. Namely where
the code that creates an eml file resides in a NodeJS library
browserify is used against this library…

Shane Gannon
- 6,770
- 7
- 41
- 64
0
votes
0 answers
What is type of this string and how to handle it?
This a part of Body in eml file (email body)
=D8=B3=D8=B1=D9=88=DB=8C=D8=B3 =D8=A7=D8=B4=D8=AA=D8=B1=D8=A7=DA=A9=
=D9=88=DB=8C=D8=AF=DB=8C=D9=88 - =D8=A2=D9=BE=D8=A7=D8=B1=D8=A7=D8=AA…

Amir
- 57
- 1
- 9
0
votes
1 answer
Convert MSG to EML with VBScript and Redemption
I want to convert an MSG file (Outlook mail message saved as a file) to an EML (RFC822) file. I'd also like to reverse the procedure and convert the resultant EML file back to MSG. From what I read, I can do this with Redemption via VBScript.
I…

Tony
- 2,658
- 2
- 31
- 46
0
votes
1 answer
How remove from and To in eml file
I create a eml file from MailMessage and SMTPdeliverymethod.specifiedpickupdirectory
But To save it, I need to fill TO and FROM field. But In fact I don't need them.
Is It possible to save mailMeassge without them?
Or I try to create a new eml file…

YannickIngenierie
- 602
- 1
- 13
- 37
0
votes
1 answer
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 what is really interesting is saved. And I decide…

UnDiUdin
- 14,924
- 39
- 151
- 249
0
votes
0 answers
How to merge multiple .eml files, using java?
I want to merge multiple .eml files into one. By using simple merge technique I am able to merge it. But while trying to open it, i can only find one email inside it. Can anyone help me with it, as i am not sure what is wrong.
below is the code…

Anirudh
- 1
- 2
0
votes
1 answer
MimeMessage not parsing attachments in outlook EML files
I'm parsing/extracting data from eml files using javax.mail.internet.MimeMessage .
MultiPart multiPart =
(MultiPart)MimeMessage.getContent();
...//check if attachments are present, then extract it
MimeBodyPart part =…

RRM
- 2,495
- 29
- 46
0
votes
1 answer
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 files again. This is how the attachment part looks…

Sandeepan Nath
- 9,966
- 17
- 86
- 144
0
votes
2 answers
Reading an .eml (outlook email) file using c#
I'm writing a service that cleans files by removing all malicious content. I'm using Interop Excel & Word api's like this:
Excel
var excelApp = new Microsoft.Office.Interop.Excel.Application();
excelApp.Visible = false;
…

Andre Grobler
- 73
- 2
- 10
0
votes
1 answer
How to send Google's original message on JavaMail?
public static boolean sendEmail() throws Exception {
ServerSettings server;
String receiver="someone@example.org";
File mail = new File("file.eml");
String subject = "subject";
try {
Properties props =…

DeMarco
- 599
- 1
- 8
- 26
0
votes
1 answer
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 packs for Windows. It happens on both Windows 2003…

Aaron
- 1
- 1
- 1
0
votes
1 answer
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 Dec 2010 10:55:52 -0800
Subject: Test…

jwerre
- 9,179
- 9
- 60
- 69