Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
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:
Thank you in advance for your help.
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()