我正在尝试在SendGrid预览中使用TestData
,以检查我的替换看起来是否不错。
我尝试创建一个临时模板,并在文本模块中放置了一些替换内容,但没有任何乐趣,因此我回过头来创建了一个仅代码模板,将the tutorial中的json粘贴到json中,然后再试一次,但是仍然看不到潜艇的工作:
我的HTML:
<html>
<head>
<title></title>
</head>
<body>
<div data-role="module-unsubscribe" class="module" role="module" data-type="unsubscribe" style="color:#444444; font-size:12px; line-height:20px; padding:16px 16px 16px 16px; text-align:Center;" data-muid="4e838cf3-9892-4a6d-94d6-170e474d21e5">
<p>HELLO -name-</p>
<p style="font-size:12px; line-height:20px;">
<a class="Unsubscribe--unsubscribeLink" href="{{{unsubscribe}}}" target="_blank" style="font-family:sans-serif;text-decoration:none;">
Unsubscribe
</a>
-
<a href="{{{unsubscribe_preferences}}}" target="_blank" class="Unsubscribe--unsubscribePreferences" style="font-family:sans-serif;text-decoration:none;">
Unsubscribe Preferences
</a>
</p>
</div>
</body>
</html>
和json:
{
"to": ["john@domain.com", "jane@domain.com", "matt@domain.com"],
"sub": {
"-name-": ["John", "Jane", "Matt"]
}
}
预览中的结果仍然是Hello -name-
我应该按下一个按钮吗?还是应该在.json上添加更多内容?我尝试使用我认为适用于v3 API的personalisations
进行尝试。在Firefox和Chrome中尝试过,没有结果。
或者仅当您真正发送测试电子邮件时,该测试数据才应该起作用?