forked from amitevski/eml_to_html
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumped version to v.1.1.0 and added CHANGELOG file
- Loading branch information
1 parent
04a3db5
commit ff3ed51
Showing
3 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
### v.1.1.0: 08 of Sep, 2021 | ||
|
||
* Added the option `-d` for extract html from all files inside the directory | ||
* Refactored all the code | ||
|
||
### v.1.0.0: 25 of Nov, 2014 | ||
|
||
* **¡First Release!** | ||
* Added code to transform EML files to HTML | ||
* The original code is from [amitevski](https://github.com/amitevski/eml_to_html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
# Cli Tool to extract html content from a eml file | ||
# CLI Tool to extract html content from a EML file | ||
|
||
## Usage | ||
|
||
Use this command for only one file: | ||
```bash | ||
node parse.js -i /inPath/to/email.eml -o /outPath/to/email.html | ||
``` | ||
|
||
Or add the flag -d for extract html from all files inside the directory: | ||
```bash | ||
node parse.js -i /path/to/email.eml -o /path/to/email.html | ||
``` | ||
node parse.js -d -i /inPath/to/ -o /outPath/to/ | ||
``` | ||
In this case the out files always has the same name of the input files with HTML extension. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters