Modeling Guide

Notification

The notification operator helps send e-mail notifications at certain points in the data workflow execution.

The message body contains technical information that the notification operators receives at its input port from the previous operator in the data workflow.

Configuration Parameters

Parameter

Type

Description

Connection

object

Connection ID that references a connection to a SMTP server.

Delete attachments after sending

boolean

A flag that controls whether the files attached to the email should be deleted after sending or not.
Default From Value

string

The value of email.from which will be used when none is received through the incoming message.
Default To Value

array

The value of email.to which will be used when none is received through the incoming message.

Default Subject Value

string

The value of email.subject which will be used when none is received through the incoming message.

Input

Input

Type

Description

in

any.*

Accepts a message whose attributes will be used to fill the email information and whose body will be used as the email body. In case there are multiple entries for a same header, they can be separated by comma.

Message Attributes:
  • email.to (type []string) mandatory: The recipient of the email.

  • email.from (type string) mandatory: The sender of the email.

  • email.subject (type string) mandatory: The subject of the email.

  • email.cc (type []string): The CC’s of the email.

  • email.attachments (type []string): The attachments of the email.

Output

Output

Type

Description

out

string

String containing a list of all the recipients that received the email, separated by semicolon (;).