Google email markup not showing

五迷三道 提交于 2019-12-11 04:56:52

问题


I'm trying to make a simple view action using Email markup from Google inside my emails (https://developers.google.com/gmail/markup/reference/go-to-action#view_action)

I use this ld+json inside my email template

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EmailMessage",
  "potentialAction": {
    "@type": "ViewAction",
    "target": http://google.com",
    "url": "http://google.com",
    "name": See ticket"
  }
}
</script>

I used Google email markup tester to valid this code.

I use registred emails (https://developers.google.com/gmail/markup/registering-with-google)

But I still can show the emails markup on Gmail.

Did I miss something ?

Do you have any clues ?

Thanks

来源:https://stackoverflow.com/questions/41564946/google-email-markup-not-showing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!