I have a scenario that parses a CSV file and I want to send it to myself using a stored procedure. I can execute the stored procedure at the end of the scenario, but I can’t attach the CSV file to it and this gives me an error:
At least one of the following parameters must be specified. “body, query, file_attachments, subject”.
I’d appreciate some help with adding the CSV file as an attachment to the stored procedure call so that I can send it to myself. Right now I’ve attempted to connect the module which creates the CSV file to the SQL server module that triggers the stored procedure call, but that didn’t work unfortunately:
The file_attachment parameter takes a path to a physical file stored on a server, but I’m not sure how I could implement the scenario so that it uses the output of the second module instead.