次のページをガイドとして使用して、送信メールに Go-To アクションを追加しようとしています。
https://developers.google.com/gmail/schemas/reference/go-to-action
テストでは、アクションは表示されません。これが私が使用している正確なコードです。JSON-LD と microdata の両方の形式を試しました。
JSON
<script type="application/ld+json">
{
"@context": "schema.org",
"@type": "EmailMessage",
"action": {
"url": "http://www.barbaraboxer.com/petitions/MSA?sc=RB_msa",
"name": "Sign Now"
},
"description": "Sign on as a citizen co-sponsor of the Military Justice Improvement Act"
}
</script>
マイクロデータ
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
<link itemprop="url" href="http://www.barbaraboxer.com/petitions/MSA?sc=RB_msa"/>
<link itemprop="name" href="Sign Now"/>
</div>
<meta itemprop="description" content="Sign on as a citizen co-sponsor of the Military Justice Improvement Act"/>
</div>