使用 json ld 标记电子邮件时,必须使用哪种 JSON LD 架构在 Google Inbox/Gmail 中显示公司图标以及您的电子邮件。
我尝试如下设置多个道具,但 Google 无法识别元数据。
<script type="application/ld+json" >
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"description": "Test!",
"image": "https://apiant.com/appResources/icons_large/shopify.png",
"thumbnailUrl": "https://apiant.com/appResources/icons_large/shopify.png",
"sender": {
"@type": "Organization",
"name": "name",
"logo": "https://apiant.com/appResources/icons_large/shopify.png",
"brand": {
"name": "name"
}
}
}
</script>
我究竟做错了什么?
相关文档: