├── .babelrc ├── .gitignore ├── README.md ├── campaigns └── purchase_receipt.mjml ├── dist └── purchase_receipt.html ├── gulpfile.babel.js ├── index.js ├── package.json ├── server.js ├── src └── converter.js └── testData └── sample.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/README.md -------------------------------------------------------------------------------- /campaigns/purchase_receipt.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/campaigns/purchase_receipt.mjml -------------------------------------------------------------------------------- /dist/purchase_receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/dist/purchase_receipt.html -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/server.js -------------------------------------------------------------------------------- /src/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/src/converter.js -------------------------------------------------------------------------------- /testData/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesClow/Vue-MJML/HEAD/testData/sample.json --------------------------------------------------------------------------------