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
Create .eml file in Development and Test Environment
The email templates are stored in database tables and we used SmtpClient to send e-Mail. Code is developed with C#.Net. Now client is requesting to create .eml file in the Development and other environments?
I want to know,
What is the need to…

vimal
- 23
- 1
- 7
0
votes
1 answer
How to parse an .msg file in php?
Is there any way for parsing the Outlook .msg files in PHP? My requirement is to parse an .msg file and convert each conversation(message) in it to separate files(Preferably .eml files).

Mahesh
- 603
- 1
- 10
- 22
0
votes
1 answer
python code to convert mail from pst to eml format
Is there any python code to convert outlook pst mails to eml format. Please also suggest for any such code in some other language. Thank you.
user177138
0
votes
1 answer
Save email as .eml, with custom date
I have emails in DB, and i want to save them as *.eml files.
SmtpClient Client = new SmtpClient();
Client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
Client.PickupDirectoryLocation = @"c:\aaa\import";
MailMessage Message = new…

trob
- 147
- 9
0
votes
1 answer
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 also want to create a plain text preview of the…

wefwfwefwe
- 3,382
- 1
- 21
- 24
0
votes
1 answer
Assertion failed when opening Facebook eml in WPF WebBrowser
I have some saved eml files and im displaying them in a WPF WebBrowser control by renaming the file extension to .mht, which IE (& therefore the WebBrowser control) will display quite happily.
Im having problems displaying eml files from FaceBook, I…

tinmac
- 2,357
- 3
- 25
- 41
0
votes
1 answer
Error reading attachments from eml file using Java Mail API
Code that converts .eml files to MimeMessages and saves the attachments and inline images to files:
// fileList contains paths to eml files
for (File file : fileList) {
MimeMessage mail =…

Kazuo
- 387
- 5
- 12
0
votes
1 answer
Open an eml file with java in linux
I am trying to open my created .eml file with java in linux. Currently I am using the following command:
Desktop.getDesktop().open(emlFile);
I create the eml file as shown in this example.
This works for my windows system, but an error occurs in…

Steckdoserich
- 834
- 2
- 11
- 24
0
votes
1 answer
Validating EML files in C#
In my application, I need to validate if a particular file has a correct EML format. I thought about opening the file and check if it has the correct headers (subject,body,etc) but I'd like to know if there is a standard approach for this in C#.…

TtT23
- 6,876
- 34
- 103
- 174
-1
votes
1 answer
How to download attachments in .eml file?
I have an .eml file which contains .eml files as attachements and each of these files have an pdf attachment, how do I download the pdf files from every email file?
Attaching the email file components
tried using python email parser module
msg =…

Vishu Bandari
- 9
- 4
-1
votes
1 answer
convert email .msg into .eml with Python
I have a folder with several emails.msg and I want to convert them to emails.eml with Python3. Is there a way?
Thanks

Elijah Martin
- 5
- 3
-1
votes
2 answers
MimeMessage takes too long to parse an EML (even from a local file)
I am trying to parse an EML using java mail API using mimeMessage
Something like this:
InputStream stream = new FileInputStream("/my.eml");
MimeMessage message = new MimeMessage(Session.getDefaultInstance(System.getProperties()),stream);
It takes…
user13103414
-1
votes
2 answers
Editing EML string
I"m trying to edit email files that are saved on a network drive. They are in the msg file format. I'm able to read them into the a string value using Simple Java Mail, but i need to add some text to the body of the email and when i do, it removes…

theNewb
- 75
- 1
- 5
-1
votes
2 answers
How can I extract only email addresses into an excel file from eml file using php
I've tried this PHP code to extract email addresses from eml file. but it show me on browser like this:
Array ( [0] => jessy87421@gmail.com
[1] => gmail.com@gmail.com
[8] => tkm.ab234@gmail.com
[16] => rjsajal99@gmail.com
…

sohag513
- 155
- 1
- 1
- 11
-1
votes
1 answer
How do I send local .eml file if it exists?
I am creating a service that looks in a local directory for a .eml file and will send it if it exists. How do I do this without downloading a dll that I have to pay for? Should I be using a pickup directory, or is there a way to load the file and…

Lohkii
- 43
- 1
- 2
- 10