How to Send Email With a Record Table in Flow

How to Send Email With a Record Table in Flow

Salesforce Flow enables users easily send emails, making it one of the most common and important things you can do on the platform. There are multiple ways of sending emails from flow and one method involves using the core Send Email action. When using this action, you can create a rich text template to use as the email body. Plus, you have the option to include HTML in the text template. Using HTML in an email template is crucial for crafting visually appealing and dynamic content. It enhances the overall engagement and impact of your messages. It's not just about adding colors or images. Using HTML, you can even send an email with a record table.

About HTML Tables

In HTML, tables are essential for effectively organizing and displaying information. They enable a systematic presentation of data, ensuring visual coherence and easy comprehension. Utilizing tags such as <table>, <tr> (table row), and <td> (table data), HTML allows for the efficient creation and structuring of tables. HTML tables stand out as an important tool for visually shaping information representation on the web.

Here is how to build an HTML record table and include it in the email body.

Building an HTML Table in Flow

Here is how to use the Flow elements to build an HTML table. Let's build a table of case records and send an email with this record table.

1- Add a Get Records element to get the case records. You can enter any criteria that you want. In this example we will get the open cases.

Get Open Cases

2- Add a Decision element to check if there are records, so that you won't build an empty table.

Decision Element to Check Collection

3- Add a Loop element to iterate over the case records. Then, add an Assignment element to assign row number and a boolean that indicates if it is an even row. This part is completely optional. Implementing these variables will enhance the table's visibility in the user interface.

Assign Row Number

RowNumber is a number variable, we will include this in the table rows. IsEvenRow is a boolean variable that we set to true and then to false for each row. For instance, it should be false for the first row and should be true for the second row. NotIsEvenRow is a boolean formula that returns the opposite value of IsEvenRow. We will use these resources to set alternate row color.

Boolean Formula

4- Add another Assignment element to assign the rows. Create a text variable called CasesTableRows and a text template called CasesTableRow.

Add Rows to Record Table

The important part is to build the CasesTableRow text template. This text template represents each row of the record table. Here is the HTML behind this text template.

<tr style="{!IsEvenRowStyle}">
    <td style="{!AllCellsStyle}">{!RowNumber}</td>
    <td style="{!AllCellsStyle}"><a href="{!OrgURL}{!Loop_Cases.Id}">{!Loop_Cases.CaseNumber}</a></td>
    <td style="{!AllCellsStyle}">{!Loop_Cases.Account.Name}</td>
    <td style="{!AllCellsStyle}">{!Loop_Cases.CreatedDate}</td>
    <td style="{!AllCellsStyle}">{!Loop_Cases.Status}</td>
    <td style="{!AllCellsStyle}">{!Loop_Cases.Origin}</td>
</tr>
Text Template for Rows of the Record Table

As you can see, it has the columns (case fields) in <td> tags. If you want to add more columns or change the existing ones, this is the place to do that change. Pay attention that it uses a formula to make the CaseNumber clickable. Read this post to learn how to build a record link in flow.

Additional Text Templates for the HTML Record Table

  • Create a text template for the header of the record table. Here you can set the color and the column labels.
<tr style="background-color: #4CAF50; color: white;">
    <th>#</th>
    <th>Case Number</th>
    <th>Account Name</th>
    <th>Opened Date</th>
    <th>Status</th>
    <th>Case Origin</th>
</tr>
Text Template for the Header of the Record Table
  • Create another text template for the styling of the cells.
  • Create one last text template to combine the header and the rows (previous text templates). This is the final record table that you want to use in the email body.
<table style="border-collapse: collapse; width: 100%;">
    {!CasesTableHeader}
    {!CasesTableRows}
</table>
Final Record Table

Here is the formula for alternate row color.

Alternate Row Colors
IF({!IsEvenRow}, "background-color: #f2f2f2;", "")

Using the Record Table

Following these steps, record table is ready for use. If it is a screen flow, you can use a display text element to display the table. Just add {!CasesTable} to the display text component.

Display Record Table on Screen

Add an action element in order to send email with this record table. You can choose the CasesTable as the email body or create a new text template that includes the table. For instance, here is a new text template for the email body.

Email Body with Record Table

At the end, your flow should look like this.

End of the Flow

Here is how the record table looks. As you can see, there are row numbers and rows are grey and white for better visibility. Moreover, case numbers are clickable.

Record Table on Screen

Here is the email that contains the record table.

Installation Links

Although you can follow these steps to build your own record table, it may be a long exercise. Therefore, you can install this autolaunched flow that builds a record table of cases. You can call it as a subflow, pass a record collection and get the record table as an output. However, it is working with the case object only. Therefore, you have to clone the flow or change it to meet your requirements.

Use this link to install in production or developer edition environments.

Use this link to install in sandbox environments.

12 Comments

  1. Very nice table created and really useful!
    I used this for invoice dunning where the account receive a list of all pending invoices.
    It's just a shame that the standard send email flow action doesn't allow multiple attachment.

  2. I follow the same steps but the table doesn't looks like as shown in the page
    there has are some steps which are not mentioned in this post

    • Can you try with 1 or 2 records and then send me the final HTML?
      Does it just look different or not working at all? There is an installation link in the post, you can install the flow that I built and see the differences.

  3. Hi Yumi, great exercise. I have just one problem: My table is empty. No matter what filter I use at the get record.
    Also I would like to use this flow with a account like a action button. But then I need to hand over the specific account id and obviously only show the cases from this account. How can I do this?

    Could you help a junior admin out please?

    Kind regards
    Alex

    • Hi Alex,
      You have to do a get in your flow and then pass the case records collection to this autolaunched flow (call it as a subflow).

  4. Thank you for the tutorial! While the debug screen looks good, my emails are just displaying the html code rather than the rendered table itself. Do you know what might be wrong?

Leave a Reply

Your email address will not be published.


*