gitextract_6x4a5o5l/ ├── .gitignore ├── .npmignore ├── CONTRIBUTING.MD ├── LICENSE.md ├── README.md ├── copymailman.js ├── jest.json ├── lib/ │ ├── constants.ts │ ├── index.ts │ ├── interfaces/ │ │ ├── MailCompiler.ts │ │ ├── index.ts │ │ ├── mjml.ts │ │ └── options.ts │ ├── mailman.ts │ ├── message.ts │ ├── module.ts │ ├── provider.map.ts │ └── service.ts ├── package.json ├── tsconfig.json └── views/ ├── assets/ │ └── style.css ├── components/ │ ├── body.tsx │ ├── bodyBuilder.tsx │ ├── button.tsx │ ├── description.tsx │ ├── divider.tsx │ ├── footer.tsx │ ├── greeting.tsx │ ├── head.tsx │ ├── header.tsx │ ├── html.tsx │ ├── image.tsx │ ├── regards.tsx │ ├── table.tsx │ └── text.tsx └── mail/ ├── generic.tsx └── index.tsx