为什么 GMail 忽略餐厅预订的微数据?
Why does GMail ignore this Microdata for a restaurant reservation?
这是我发送给客户的每封电子邮件中附加的微数据示例:
<div itemscope itemtype="http://schema.org/FoodEstablishmentReservation">
<meta itemprop="reservationNumber" content="123456"/>
<link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Test Tester"/>
<meta itemprop="email" content="test@example.org"/>
</div>
<div itemprop="reservationFor" itemscope itemtype="http://schema.org/FoodEstablishment">
<meta itemprop="name" content="My Venue" />
<meta itemprop="image" content="https://example.org/venues/images/1.jpg" />
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="123, My address, City, Country" />
<meta itemprop="addressLocality" content="City" />
<meta itemprop="addressRegion" content="City" />
<meta itemprop="addressCountry" content="Country" />
<meta itemprop="postalCode" content="12345" />
</div>
</div>
<meta itemprop="startTime" content="2021-10-12T17:00:00+02:00"/>
<meta itemprop="bookingTime" content="2021-10-05T00:08:00+02:00"/>
<meta itemprop="modifiedTime" content="2021-10-05T00:08:00+02:00"/>
<meta itemprop="partySize" content="2"/>
</div>
这在 their tester 中得到验证,但它仍然没有显示打开电子邮件。有什么明显的错误吗?
蒂亚
在广泛阅读文档后,我终于在他们的文档中找到了解释整个过程的页面。我们完成了每一步,我们的电子邮件现在被 Google 接受,现在当有人在 GMail 中打开我们的电子邮件时可以正确创建可视化。
可在此处找到所需的所有文件:https://developers.google.com/gmail/markup/registering-with-google
最重要的部分是您需要完成以下步骤:
- Fill out the registration form and we will get back to you.
正确填写表格后,您需要等待大约 48 小时,Google 的代表才会与您联系。
这是我发送给客户的每封电子邮件中附加的微数据示例:
<div itemscope itemtype="http://schema.org/FoodEstablishmentReservation">
<meta itemprop="reservationNumber" content="123456"/>
<link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Test Tester"/>
<meta itemprop="email" content="test@example.org"/>
</div>
<div itemprop="reservationFor" itemscope itemtype="http://schema.org/FoodEstablishment">
<meta itemprop="name" content="My Venue" />
<meta itemprop="image" content="https://example.org/venues/images/1.jpg" />
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="123, My address, City, Country" />
<meta itemprop="addressLocality" content="City" />
<meta itemprop="addressRegion" content="City" />
<meta itemprop="addressCountry" content="Country" />
<meta itemprop="postalCode" content="12345" />
</div>
</div>
<meta itemprop="startTime" content="2021-10-12T17:00:00+02:00"/>
<meta itemprop="bookingTime" content="2021-10-05T00:08:00+02:00"/>
<meta itemprop="modifiedTime" content="2021-10-05T00:08:00+02:00"/>
<meta itemprop="partySize" content="2"/>
</div>
这在 their tester 中得到验证,但它仍然没有显示打开电子邮件。有什么明显的错误吗?
蒂亚
在广泛阅读文档后,我终于在他们的文档中找到了解释整个过程的页面。我们完成了每一步,我们的电子邮件现在被 Google 接受,现在当有人在 GMail 中打开我们的电子邮件时可以正确创建可视化。
可在此处找到所需的所有文件:https://developers.google.com/gmail/markup/registering-with-google
最重要的部分是您需要完成以下步骤:
- Fill out the registration form and we will get back to you.
正确填写表格后,您需要等待大约 48 小时,Google 的代表才会与您联系。