EML Extractor is a CLI tool to extract attachments from .eml files (email messages saved as files).
- Find .eml files (recursively or not) in a selected folder;
- Select individuals .eml files to extraction;
- Save all attachments in a single main folder;
- Organize the attachments by email subject subfolder.
Python 3.6+
$ pip install eml-extractor
By default, the current working directory is used as the source for .eml files as well as destination for extracted attachments. You can set different optional arguments to change this behavior:
usage: eml-extractor [OPTIONS]
Extracts attachments from .eml files
optional arguments:
-h, --help show this help message and exit
-s PATH, --source PATH
the directory containing the .eml files to extract
attachments (default: current working directory)
-r, --recursive allow recursive search for .eml files under SOURCE
directory
-f FILE [FILE ...], --files FILE [FILE ...]
specify an .eml file or a list of .eml files to extract
attachments
-d PATH, --destination PATH
the directory to extract attachments to (default:
current working directory)
1. Find all .eml files in current working dir, extract the attachments and save them in the same dir:
$ eml-extractor
The command above is equivalent to:
$ eml-extractor --source . --destination .
$ eml-extractor --source /path/to/eml/files/
$ eml-extractor --source /path/to/eml/files/ --recursive
$ eml-extractor --files /path/to/file1.eml /path/to/file2.eml
$ eml-extractor --destination /path/to/extracted/attachments/
This project is licensed under the terms of the MIT License.