If you want to send templated emails to a list of people, here’s an example doc.
It’s set up with 3 tables / sections:
- People table: The name column will be used in the email template, the email column is used for sending to, and the send email button column connects through the Gmail Pack to send out from the Coda doc.
- Content table: Because we can’t yet use a Section for mail merge, you’ll need to put the standard / boilerplate content of the email in a table. This is a one cell table (one column, one row) to mimic a section.
- Email Template table: The is the overarching structure of the email that you’ll send. The {1} and {2} are placeholder variables. We’ll eventually pass in the First Name column and Content table’s Body column variables into it.
The Button to send the email through the Gmail Pack is set up like this:
The Content section of the email button builder uses the Format formula:
- Structure: Format (basic structure with placeholder variables, variable 1, variable 2)
- In this example: Format([Email Template].Body, thisRow.[First Name], Content.Body)