9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
const DYNAMIC_TEMPLATE_CHAR_WARNING = `
|
|
Content with characters ', " or & may need to be escaped with three brackets
|
|
{{{ content }}}
|
|
See https://sendgrid.com/docs/for-developers/sending-email/using-handlebars/ for more information.`;
|
|
|
|
module.exports = {
|
|
DYNAMIC_TEMPLATE_CHAR_WARNING,
|
|
};
|