├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.js ├── failure.html ├── mails collector overview.pdf ├── package.json ├── public ├── css │ └── styles.css └── images │ └── CM transparent logo.png ├── signup.html ├── subscribed_members_export_af94264fa1 - subscribed_members_export_af94264fa1.pdf └── success.html /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | npm-debug.log 3 | .DS_Store 4 | /*.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/app.js -------------------------------------------------------------------------------- /failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/failure.html -------------------------------------------------------------------------------- /mails collector overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/mails collector overview.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/package.json -------------------------------------------------------------------------------- /public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/public/css/styles.css -------------------------------------------------------------------------------- /public/images/CM transparent logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/public/images/CM transparent logo.png -------------------------------------------------------------------------------- /signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/signup.html -------------------------------------------------------------------------------- /subscribed_members_export_af94264fa1 - subscribed_members_export_af94264fa1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/subscribed_members_export_af94264fa1 - subscribed_members_export_af94264fa1.pdf -------------------------------------------------------------------------------- /success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyamalogi/Email-Aggregator/HEAD/success.html --------------------------------------------------------------------------------