TYPO3 Mjml.io integration
Go to file
Daniel Siepmann c45dee45b0
[TASK] Update MJML and clean up parts of the extension for new release (#31)
Use one functional test to ensure everything works,
no unit tests with heavy mocking.

Update mjml to fix security issues and allow new options.

Provide GitHub Actions. This is a public extension with free minutes
which should ensure that existing setup still works.
2022-09-15 15:58:08 +02:00
.github/workflows [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
Classes [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
Configuration [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
Resources/Public/Icons [TASK] Move extension icon to right place 2017-12-14 18:19:04 +01:00
Tests/Functional [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
.gitignore [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
.styleci.yml [TASK] Add .styleci.yml file 2018-08-15 21:24:08 +02:00
.travis.yml Update travis 2021-01-26 10:16:39 +01:00
composer.json [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
ext_conf_template.txt [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
ext_emconf.php php 7.4 + code cleanup 2021-01-26 10:15:06 +01:00
ext_localconf.php [BUGFIX] Add default folder configs and missing extbase registration 2018-01-19 16:08:14 +01:00
package-lock.json [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
package.json [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
phpcs.xml.dist TASK: Fix CGL Issues 2017-12-14 22:32:08 +01:00
phpunit.xml.dist [TASK] Update MJML and clean up parts of the extension for new release (#31) 2022-09-15 15:58:08 +02:00
README.md Update README.md (#11) 2018-01-02 15:29:53 +01:00

MJML

https://mjml.io integration for TYPO3 EXT:Form

MJML is a markup language designed to reduce the pain of coding a responsive email. Its semantic syntax makes it easy and straightforward and its rich standard components library speeds up your development time and lightens your email codebase. MJMLs open-source engine generates high quality responsive HTML compliant with best practices. https://mjml.io/getting-started-onboard

Installation

Over composer:

composer require saccas/mjml

NPM

Npm is needed for the conversion of the MJML file to HTML

Usage in EXT:Form

You can overwrite the default finishersEmailMixin so that he uses the MjmlEmailFinisher or create your own.

TYPO3:
  CMS:
    Form:   
      mixins:
        finishersEmailMixin:
          implementationClassName: 'Saccas\Mjml\Domain\Finishers\MjmlEmailFinisher'

MJML Documentation

https://mjml.io/documentation/

Usage in your distribution

To automate the installation of the npm packages, you could add the following lines to your composer.json

	"scripts": {
		"post-install-cmd": [
			"cd web/typo3conf/ext/mjml && npm prune --production"
		],
		"post-update-cmd": [
			"cd web/typo3conf/ext/mjml && npm prune --production"
		],
		"pre-deploy": [
			"cd web/typo3conf/ext/mjml && npm prune --production"
		]
	}