In the ‘Server Execution Options’ window, there is a field for custom job name. I want only the name I give in the field to appear in my email subject line.
Expected: KNIME Server job finished with state EXECUTION_FINISHED. Flow: ExampleFlowName
Actual: KNIME Server job finished with state EXECUTION_FINISHED. Flow: ExampleFlowName 2024-07-31 03.45.00
The notification functionality cannot be customized. The timestamp is included to point to the specific job, for instance on high frequently executed schedule.
In case you want to use a custom email success notification you can use the “Send Email” node as last step of your workflow instead.
My workflow has 6 Google Sheets Updater nodes. How do I set up the send email node in this case? I want only 1 email to be sent with this subject: KNIME Server job finished with state EXECUTION_FINISHED. Flow: ExampleFlowName.
You would connect the Send Email node to the last step executed. In case you have the 6 Google Sheet Updater nodes in parallel branches as last steps you could either
a) Make them dependent from another step by a flow variable connection, the last one executed in the row would be connected to the Send Email node, or
b) Encapsulate the whole sending into a container or Metanode and connect the Send Email node after the component/Metanode via a flow variable connection.