Skip to content

EMAIL INLINE - DATA SINK

Description

The EMAIL INLINE data sink is designed to distribute data directly within the body of an email, rather than as an attachment. This method is particularly useful for sending data that requires immediate attention or when the recipient needs to view the data directly within their email client. The EMAIL INLINE data sink supports a variety of data formats, making it versatile for different types of data distribution needs.


Config

REQUIRED


Config Parameters

The following are the configuration parameters for the EMAIL INLINE data sink:

Name Description
to An array of email addresses to send the email to. This is a required parameter.
cc An array of email addresses to CC. This is an optional parameter.
bcc An array of email addresses to BCC. This is an optional parameter.
subject The subject line of the email. This is a required parameter.

Config Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<apiroConf version="1" xmlns="http://apiro.com/apiro/v1/root">
    <loadOrder>25</loadOrder>
    <dataSinks>
        <dataSink name="ESG_OPERATIONS_EMAIL_INLINE" definition="EMAIL_INLINE">
            <config>
                <![CDATA[
                    {
                        "to":["esg.operations.3030@gmail.com"],
                        "cc":[],
                        "bcc":[],
                        "subject":"ESG SCORES AUTO DISTRIBUTION"
                    }
            ]]>
            </config>
        </dataSink>
    </dataSinks>
</apiroConf>

Common Mistakes

Remember that the configuration for the EMAIL INLINE data sink is required. If no configuration, or improper configuration is provided then data will not be distributed.