html-email-extractor
v1.0.5
Published
for extract emails you can use this npm package html-email-extractor which is light weight.
Downloads
4
Maintainers
Readme
Html Email Extractor
for extract emails you can use this npm package html-email-extractor which is light weight.
Installation
Html Email Extractor requires Node.js to run.
Install the dependencies and devDependencies.
npm i html-email-extractor
For in your files
var htmlEmailExtractor = require('html-email-extractor');
Pass your html or text into function
//example 1
var text = 'your html content';
let emailsArr=htmlEmailExtractor(text);
//example 2
var text2 = 'your text';
let emailsArr2=htmlEmailExtractor(text2);
//If return null means no emails if return array then you get all emails in array.