├── .commitlintrc.js ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc.js ├── .npmignore ├── .npmrc ├── .prettierrc.js ├── .remarkignore ├── .remarkrc.js ├── .xo-config.js ├── LICENSE ├── README.md ├── example.js ├── index.js ├── media ├── gmail-screenshot.png └── screenshot.png ├── package.json └── test ├── fixtures ├── image.gif ├── image.jpeg ├── image.jpg ├── image.png └── image.svg └── test.js /.commitlintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | }; 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- 1 | test/snapshots/**/*.md 2 | -------------------------------------------------------------------------------- /.remarkrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: ['preset-github'] 3 | }; 4 | -------------------------------------------------------------------------------- /.xo-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/.xo-config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/index.js -------------------------------------------------------------------------------- /media/gmail-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/media/gmail-screenshot.png -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/test/fixtures/image.gif -------------------------------------------------------------------------------- /test/fixtures/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/test/fixtures/image.jpeg -------------------------------------------------------------------------------- /test/fixtures/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/test/fixtures/image.jpg -------------------------------------------------------------------------------- /test/fixtures/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/test/fixtures/image.png -------------------------------------------------------------------------------- /test/fixtures/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/test/fixtures/image.svg -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardemail/nodemailer-base64-to-s3/HEAD/test/test.js --------------------------------------------------------------------------------