├── .gitignore ├── README.md ├── icon.png ├── icons ├── email.png ├── paper-plane-red.png └── profile.png ├── index.js ├── info.plist ├── mailsy.gif ├── open.mjs ├── package.json └── utils └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | email.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/icon.png -------------------------------------------------------------------------------- /icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/icons/email.png -------------------------------------------------------------------------------- /icons/paper-plane-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/icons/paper-plane-red.png -------------------------------------------------------------------------------- /icons/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/icons/profile.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/index.js -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/info.plist -------------------------------------------------------------------------------- /mailsy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/mailsy.gif -------------------------------------------------------------------------------- /open.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/open.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/package.json -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalliAsghar/mailsy-alfred/HEAD/utils/index.js --------------------------------------------------------------------------------