├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── functions ├── banner.js ├── input.js ├── process.js └── processheader.js ├── index.js ├── logo.png ├── output.png ├── package.json └── pull_request_template.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/README.md -------------------------------------------------------------------------------- /functions/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/functions/banner.js -------------------------------------------------------------------------------- /functions/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/functions/input.js -------------------------------------------------------------------------------- /functions/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/functions/process.js -------------------------------------------------------------------------------- /functions/processheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/functions/processheader.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/index.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/logo.png -------------------------------------------------------------------------------- /output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/output.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/package.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/headmail/HEAD/pull_request_template.md --------------------------------------------------------------------------------