├── .github └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── src ├── plugin.js └── replaceBase64Images.js └── test └── replaceBase64ImagesSpec.js /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/renovate.json -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/src/plugin.js -------------------------------------------------------------------------------- /src/replaceBase64Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/src/replaceBase64Images.js -------------------------------------------------------------------------------- /test/replaceBase64ImagesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/nodemailer-plugin-inline-base64/HEAD/test/replaceBase64ImagesSpec.js --------------------------------------------------------------------------------