Allows to send files by email.
Code repository: https://github.com/AmadeusITGroup/dataio-framework/tree/main/src/main/scala/com/amadeus/dataio/distributors/email
Useful links:
Fields
The following fields are available for Email distributor components:
Name | Mandatory | Description | Example | Default |
---|---|---|---|---|
SmtpHost | Yes | The SMTP host to use to send emails. | ||
SmtpUser | Yes | The SMTP username to use to authenticate. | ||
SmtpPassword | Yes | The SMTP password to use to authenticate. | ||
From | Yes | Specifies the sender's email address. | me@mycompany.com | |
To | Yes | Specifies the recipient's email address. | ["john@smith.com"] | |
Cc | No | Allows you to include additional recipients in the "Cc" (carbon copy) field of the email. | ["john@smith.com"] | |
Bcc | No | Enables the inclusion of recipients in the "Bcc" (blind carbon copy) field of the email. | ["john@smith.com"] | |
Subject | Yes | Sets the subject line of the email. | ||
Body | No | Provides the body content of the email. | ||
Compressed | No | A boolean flag indicating whether the email attachments are compressed. | true | false |