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
"
- 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)
- 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
- 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
- The actual REST Query that will send the data to mailgun.
"