Skip to content

Instantly share code, notes, and snippets.

@prayashm
Created August 3, 2021 19:53
Show Gist options
  • Save prayashm/7962b9cca2b156f087d278b6659540bc to your computer and use it in GitHub Desktop.
Save prayashm/7962b9cca2b156f087d278b6659540bc to your computer and use it in GitHub Desktop.
Sendgrid Dynamic template renders fine in Code studio, but not when sent as email
{
"items": [1, 2, 3]
}
<html>
<body>
{{#if items.length}}
<ul>
{{#each items}}
<li>{{this}}</li>
{{/each}}
</ul>
{{/if}}
</body>
</html>
@prayashm
Copy link
Author

prayashm commented Aug 3, 2021

On Code Preview:
image

In email:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment