Table data to CSV to Binary

Hey! Just checking in to see if either found a solution or decided to use a different API?

If you're still working on this could you share any errors you're getting. @minijohn walks through the step on another post here: How to send email with mailgun sender from retool table - #2 by minijohn

"

  1. To actually send an email (mailgun or not) you'll need a few things (read more ):
  • From/To Address
  • Subject
  • Email body (html or not)
  1. I'm assuming your table holds just one of the 3 data points, the recipient's email address.
  • If that's the case you'll need some sort of process to specify the Subject and Body of the email
  1. On each row, you can add an action button that triggers a JS query for that row. Or a modal that lets you specify the subject/body for that record.
  • If this is a batch process, you'll need to slightly adapt this script to be able to take multiple selected rows and construct the final api calls that need to be made
  1. The actual REST Query that will send the data to mailgun.

"

1 Like