Add file attachments within a custom scenario (Python) script
S_V84
Registered Posts: 2 ✭✭✭✭
Hello,
I am trying to automate a flow using a custom scenario script written in Python. I wish to send one of the outputs produced by the flow as an email attachment once the flow completes. I got this far:
sender = scenario.get_message_sender(channel_id="email_channel_id")
sender.set_params(sender="donotreply@company.com", recipient="someone@company.com")
Not sure how to include attachments in the set_params() call.
Please note that:
- The attachment is a file within a managed DataIku folder that is expected to be built at the end of the flow
- It is a multi-worksheet Excel file
Thank you in advance for your help.
Answers
-
Never mind. Figured out how to do this myself by examining the html fields in the in-built reporter form:
# Instantiate an email sender object
sender = scenario.get_message_sender(channel_id = "email_channel_id")
# Create an array of dicts: one for each attachment with:
# - 'type' specifying the type of attachment
# - 'params' specifying other details
attachments =[ {
'type': 'FOLDER_ITEM',
'params':
{'folderId': 'folder_id',
'attachedItemPath': 'name_of_file_in_folder'}
}]
# Set all params in the sender object
sender.set_params(sender="donotreply@company.com",
recipient="someone@company.com",
attachments = attachments,
subject="Hello",
message="Test to test the testy test.")
# Send email
sender.send() -
Hi All,
I wanted to send an attachment using custom python script based on a condition.Lets say if my dataset is empty then I do not want to include attachment else include it.
Can anyone please help me here how to get that done?