У меня возникают трудности при добавлении кода схемы в сборку электронной почты - при тестировании электронной почты в Gmail ничего не отображается.
Я пытался проверить свою электронную почту и не вижу информации о схеме.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<script type="application/ld+json">
[{
"@context": "http://schema.org/",
"@type": "Organization",
// WARNING: Before sending email, either point the logo
// at your own image or delete the logo annotation.
//
// If showing a logo, we recommend using an https URL.
// It's not a requirement today, but may be in the future.
"logo": "http://media.bobsdiscountfurniture.com/7843/Miscellaneous/little -bob-profile.jpg"
},{
"@context": "http://schema.org/",
"@type": "EmailMessage",
// Alternative subject line.
"subjectLine": "It's Two for Tuesday!"
},{
"@context": "http://schema.org/",
"@type": "DiscountOffer",
"description": "Two items - one great price!",
"discountCode": "",
"availabilityStarts": "2019-06-09T06:51:45-07:00",
"availabilityEnds": "2019-06-12T06:51:45-07:00"
},{
// Promotion card with single image.
// We recommend using an https URL.//
// Sample image is 538x138, 3.9 aspect ratio
"@context": "http://schema.org/",
"@type": "PromotionCard",
"image": "https://productimages.mybobs.com/20052909/20052909_hero_wide.pn g"
}]
</script>
</head>
<body>
<p>Email Body</p>
<p>Line 2</p>
</body>
</html>
Я надеюсь, что мой код Schema будет отображаться в моем тестовом электронном письме, чтобы я мог отправить его в Google, чтобы получить разрешение на включение кодирования Schema в мои электронные письма на регулярной основе.