Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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" : "<!-- Template with CSS starter kit -->\n<html><head><style type=\"text/css\"> * { font-family: Verdana, sans-serif; } table { width: 100%; border-collapse: collapse; border: 1px solid #ddd; } td { padding: 10px; text-align: left; border: 1px solid #ddd; } th { background-color: #f2f2f2; padding: 10px; text-align: left; border: 1px solid #ddd; }</style></head><body>\n{# add content underneath this - you can use JINJA templating, e.g. <b>{{ column_name }}</b> #}\n\n</body></html>",
"visibilityCondition" : "model.use_body_value && (model.body_format == 'html')"
Expand Down
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down