diff --git a/CHANGELOG.md b/CHANGELOG.md index f9379d7..5f52128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [Version 1.1.0](https://github.com/dataiku/dss-plugin-sendmail/releases/tag/v1.0.3) - Feature release - 2026-07 + +- Features added + - Use of EMAIL_TEMPLATE_TEXTAREA instead of TEXTAREA to allow preview of email body ## [Version 1.0.3](https://github.com/dataiku/dss-plugin-sendmail/releases/tag/v1.0.3) - Feature release - 2025-03 diff --git a/custom-recipes/send-mails-from-contacts-dataset/recipe.json b/custom-recipes/send-mails-from-contacts-dataset/recipe.json index e656acd..b27f813 100644 --- a/custom-recipes/send-mails-from-contacts-dataset/recipe.json +++ b/custom-recipes/send-mails-from-contacts-dataset/recipe.json @@ -164,7 +164,7 @@ { "name": "html_body_value", "label" : "Body (HTML)", - "type": "TEXTAREA", + "type": "EMAIL_TEMPLATE_TEXTAREA", "description" : "The body content supports JINJA templating. E.g. for a value from the input dataset use {{ column_name }}, for a table of attachment data {{ attachments.dataset_name.html_table }}, or to loop through an attachment dataset {% for row in attachments.dataset_name.data %}{{ row.column_name }}{% endfor %}", "defaultValue" : "\n\n{# add content underneath this - you can use JINJA templating, e.g. {{ column_name }} #}\n\n", "visibilityCondition" : "model.use_body_value && (model.body_format == 'html')" diff --git a/plugin.json b/plugin.json index ee7b2ac..da96f57 100644 --- a/plugin.json +++ b/plugin.json @@ -1,9 +1,9 @@ { "id": "sendmail", - "version": "1.0.3", + "version": "1.1.0", "meta": { "label": "Send emails", - "description": "Send emails based on a dataset containing a list of contacts, with optional attachments (other datasets)", + "description": "Send emails based on a dataset containing a list of contacts, with optional attachments (other datasets). Requires DSS 15.1 or above", "author": "Dataiku", "icon": "icon-envelope-alt", "licenseInfo": "Apache Software License",