├── .github └── workflows │ └── main.yaml ├── .gitignore ├── README.md ├── __tests__ └── main.test.js ├── data └── email.html ├── index.js ├── package.json ├── screenshot └── Mailsy.png └── utils ├── copy.js └── index.js /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | pnpm-lock.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/__tests__/main.test.js -------------------------------------------------------------------------------- /data/email.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/Mailsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/screenshot/Mailsy.png -------------------------------------------------------------------------------- /utils/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/utils/copy.js -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/Mailsy/HEAD/utils/index.js --------------------------------------------------------------------------------