mjml-validator v4.15.3
Validating MJML
MJML provides a validation layer that helps you building your email. It can detect if you misplaced or mispelled a MJML component, or if you used any unauthorised attribute on a specific component. It supports 3 levels of validation:
skip: your document is rendered without going through validationsoft: your document is going through validation and is rendered, even if it has errorsstrict: your document is going through validation and is not rendered if it has any error
By default, the level is set to soft.
In CLI
When using the mjml command line, you can add the option -l or --level with the validation level you want.
Validates the file without rendering it
mjml --validate template.mjmlSets the validation level to
skip(so that the file is not validated) and renders the file
mjml -l skip -r template.mjmlIn Javascript
In Javascript, you can provide the level through the options parameters on MJMLRenderer. Ex: new MJMLRenderer(inputMJML, { level: strict })
strict will raise a MJMLValidationError exception. This object has 2 methods:
getErrorsreturns an array of objects withline,message,tagNameas well as aformattedMessagewhich contains theline,messageandtagNameconcatenated in a sentence.getMessagesreturns an array offormattedMessage.
When using soft, no exception will be raised. You can get the errors using the object returned by the render method errors. It is the same object returned by getErrors on strict mode.
Use of .mjmlconfig file
If not exists, add a .mjmlconfig file at the root of your project (where you execute the mjml command). Add the following key to the json:
{
...
"validators": [
"validateTag",
"validateAttribute",
"validChildren",
"./validators/ColumnCount.js",
]
}"validateTag", "validateAttribute" and "validChildren" are the default validation rules.
If you want to add custom rules, you can add the path to the file where the validtion function resides.
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago