簡體   English   中英

Google 電子郵件標記中缺少突出顯示

[英]Missing highlight in Google Email Markup

幾周以來,我一直在研究谷歌電子郵件標記。 我已提交審核。 谷歌審核團隊回復說,該標記缺少其中的突出顯示。 關於標記,電子郵件是關於從醫院發送給患者的計划確認。 電子郵件包含計划日期、時間、醫生姓名和醫院名稱。 我使用過事件預訂 JSON/LD。 標記測試工具顯示一切正常。 以下鏈接事件預訂參考中沒有提到高亮

這是 JSON/LD 供參考

{
  "@context":              "http://schema.org",
  "@type":                 "EventReservation",
  "reservationNumber":     "12345",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type":               "Person",
    "name":                "John Doe"
  },
  "reservationFor": {
    "@type":               "Event",
    "name":                "Schedule Appointment",
    "performer": {
      "@type": "Person",
      "name": "Jane Doe",
      "image": "www.mysite.com"
    },
    "startDate":           "2020-08-21T10:00+05:30",
    "location": {
      "@type":             "Place",
      "name":              "Viman Nagar",
      "address": {
        "@type":           "PostalAddress",
        "streetAddress":   "Viman Nagar",
        "addressLocality": "Viman Nagar",
        "addressRegion":   "Viman Nagar",
        "postalCode":      "Viman Nagar",
        "addressCountry":  "Viman Nagar"
      }
    }
  },
  "modifiedTime":"2020-08-21T10:00:00+05:30",
  "modifyReservationUrl":"www.mysite.com"
}

上面的 JSON/LD 在標記測試工具上沒有顯示任何錯誤。 我已經在 J​​SON 中輸入了所有必需的和建議的數據。 如何在其中指定突出顯示? 我在上述鏈接中找不到任何要突出顯示的參考。

我還附上了我在測試 Google App Script 期間收到的電子郵件的屏幕截圖。

您的startDate屬性中的日期格式無效。 請在下面找到更正后的 JSON:

{
  "@context":              "http://schema.org",
  "@type":                 "EventReservation",
  "reservationNumber":     "12345",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type":               "Person",
    "name":                "John Doe"
  },
  "reservationFor": {
    "@type":               "Event",
    "name":                "Schedule Appointment",
    "performer": {
      "@type": "Person",
      "name": "Jane Doe",
      "image": "www.mysite.com"
    },
    "startDate":           "2020-08-21T10:00:00+05:30",
    "location": {
      "@type":             "Place",
      "name":              "Viman Nagar",
      "address": {
        "@type":           "PostalAddress",
        "streetAddress":   "Viman Nagar",
        "addressLocality": "Viman Nagar",
        "addressRegion":   "Viman Nagar",
        "postalCode":      "Viman Nagar",
        "addressCountry":  "Viman Nagar"
      }
    }
  },
  "modifiedTime":"2020-08-21T10:00:00+05:30",
  "modifyReservationUrl":"www.mysite.com"
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM