Effective Use of KingswaySoft Email Destination to Send Emails with Attachments

23 February 2024
KingswaySoft Team

Sending emails is a common scenario in integrations, whether for logging a process status, sending a periodic report, job monitoring, etc. Handling this within the SSIS package can be advantageous in many ways. Selecting the right way to do this depends on a few factors, such as which mail server you would like to use, what authentication it accepts, and, more importantly, whether it can accurately handle various other requirements.

One such requirement can be the dynamic composition of file attachments to be sent in the ETL process, which can be challenging to implement. With the KingswaySoft Email Destination component, we can simplify this process for efficiently sending emails and attachments.

In this blog post, we will look at a generic case that includes a JSON file (document) generated on time and sent as an email attachment, all while staying in the same data flow. We will use the following components for this demonstration:

The above are all included in our SSIS Productivity Pack, which you can download from this link.

Setting Up the Source

The first part of the Data Flow involves setting up the source data and the contents of the file(s) that we need to include in our email upon creation. In our example, we utilized a Data Spawner as a data source, which generates dummy data for testing purposes. In a real-life business scenario, this could be any of your data reservoirs. Our objective here is to generate a JSON document from the source data, for which we will use the JSON Merge Component. The JSON Merge is an SSIS transformation component that accepts tabular data and generates a JSON document as a LongText. That is, the JSON structure generated using the input data will be retained in one output column within the SSIS pipeline in memory, rather than being saved to the local file system. This makes things easier and more efficient since you do not have to make provisions to have a local/shared path available for your integrations. Please find more details on how to work with the JSON Merge component in our Online Help Manual.

Once you have set up the document designer and connected the inputs, the 'MergedJSON' displayed below is the output column that contains the generated JSON document content in text format. You could change the column name to anything you deem appropriate.

MergedJSON.png

Now, as mentioned above, the MergedJSONoutput column will have the JSON document in text/long text format to be used as the file attachment later in this blog post. For us to send it out as an email attachment, it needs to be in binary format. Along with that, we also need a few other configurations to be passed to our Email Destination component. Therefore, the next step in the flow would be to perform some transformations.

Transform Text Values to Binary Content

For this, we use the Premium Derived Column component, with the function shown below, to convert the text to Binary content.

StringToBytes( [MergedJson], 65001 )

Then, we will add a file name for our attachment. The rest of the required values would be the "To" and "From" fields. The "From" column is optional, and if not provided, it would pick the user/mailbox of the connection user from the Email Connection manager. For more on how to set up the Email Connection Manager, please see our Online Help Manual.

PDC.png

And then, we add a "Subject" which we provide as a function to pick and append the latest date (assuming that our case is to send a report once a day). Please note that you can modify the expression to add any date or datetime value to the string.

"Report for "+DateTimeToString(GetDate(), "yyyy-mm-dd" )

Once done, we move to the Email Destination component.

Destination Configuration

The Email Destination component supports a set of actions, out of which the one we are using today is the "Send Email" action. When this is selected (after selecting the appropriate connection manager), on the columns page, you will see a button "Add Attachment", which you can use to add additional metadata for an attachment body and attachment name.

Email Destination General.png

Email Destination Columns.png

Once done, you can perform the mappings as required. There are other fields that we have not mapped for our case, but you could choose to do so if required. The data flow, as a whole, would look as shown below.

Data Flow.png

Once we execute this, the email that the recipient receives will contain the attachment, properly named and in the expected readable format.

Email.png

Please note that you could also attach multiple files by clicking and adding more to the metadata.

Multiple Attachments.png

Conclusion

By following the above data flow, or a similar one based on your business case, you could easily send out emails and attachments using our Email Destination component. This being a data flow component, makes it straightforward to manage and can be added as part of either scheduled or ad hoc processes.

We hope this has helped!

Archive

November 2024 3 October 2024 1 September 2024 1 August 2024 2 July 2024 1 June 2024 1 May 2024 1 April 2024 2 March 2024 2 February 2024 2 January 2024 2 December 2023 1 November 2023 1 October 2023 2 August 2023 1 July 2023 2 June 2023 1 May 2023 2 April 2023 1 March 2023 1 February 2023 1 January 2023 2 December 2022 1 November 2022 2 October 2022 2 September 2022 2 August 2022 2 July 2022 3 June 2022 2 May 2022 2 April 2022 3 March 2022 2 February 2022 1 January 2022 2 December 2021 1 October 2021 1 September 2021 2 August 2021 2 July 2021 2 June 2021 1 May 2021 1 April 2021 2 March 2021 2 February 2021 2 January 2021 2 December 2020 2 November 2020 4 October 2020 1 September 2020 3 August 2020 2 July 2020 1 June 2020 2 May 2020 1 April 2020 1 March 2020 1 February 2020 1 January 2020 1 December 2019 1 November 2019 1 October 2019 1 May 2019 1 February 2019 1 December 2018 2 November 2018 1 October 2018 4 September 2018 1 August 2018 1 July 2018 1 June 2018 3 April 2018 3 March 2018 3 February 2018 3 January 2018 2 December 2017 1 April 2017 1 March 2017 7 December 2016 1 November 2016 2 October 2016 1 September 2016 4 August 2016 1 June 2016 1 May 2016 3 April 2016 1 August 2015 1 April 2015 10 August 2014 1 July 2014 1 June 2014 2 May 2014 2 February 2014 1 January 2014 2 October 2013 1 September 2013 2 August 2013 2 June 2013 5 May 2013 2 March 2013 1 February 2013 1 January 2013 1 December 2012 2 November 2012 2 September 2012 2 July 2012 1 May 2012 3 April 2012 2 March 2012 2 January 2012 1

Tags