I’ve made a scenario that parses a CSV file, and I want to send it to my email address. To do this I’ve used a module that triggers a stored procedure which sends an email to me with the csv file in the body of the email. This works, but when I receive the email, it doesn’t actually attach a .csv file to it. I just end up receiving an email with a csv formatted string instead, which isn’t very useful. Is there a way to send the email with an actual .csv file instead? The end goal is to receive a .csv file in my mailbox
Thanks