Sendgrid - 动态模板中的车把错误消息

Sendgrid - handlebar error msg in dynamic template

我尝试设置一个包含多个车把的 Sendgrid 动态模板,其中包括一个 Iterator with each 可以找到整个电子邮件模板 html her

测试数据是这样的:

{
   "total":"1000",
   "items":[
      {
         "text":"Ebook 1",
         "qty":"1",
         "price":"3"
      },
      {
         "text":"Ebook 2",
         "qty":"2",
         "price":"3"
      },
      {
         "text":"ebook 3",
         "qty":"4",
         "price":"3"
      }
   ],
   "name":"John Doe",
   "address01":"Stargate 292",
   "city":"NY",
   "state":"NY",
   "zip":"4567",
   "orderId":"456",
   "expiry":"Nov 9 2021",
   "customerRef":"123"
}

出于某种原因,我在保存时不断收到此错误:

您的模板已成功保存,但我们检测到您的把手代码存在问题,需要引起注意。

我找不到任何其他错误消息可以准确地告诉我 为什么 代码中的 发生此错误。

我正在使用 {{#each}} 迭代,不能 100% 确定设置是否正确

{{#each items}}    
<table>
  <tr>
    <td>{{this.text}}</td>
  </tr>
  <tr>
    <td>{{this.qty}}</td>
  </tr>
  <tr>
    <td>{{this.price}}</td>
  </tr>
</table>
{{/each}}

其他车把都是基本款,如{{ name }}{{ city }}

有没有人遇到过这种错误并且知道如何解决?

发现此拼写错误:

{{ customerRef} })

不得不改为

{{ customerRef }}

课程:

  1. 使用车把时注意大括号
  2. Sendgrid 的错误处理希望以后会更加详细!