簡體   English   中英

用於活動預訂的 Gmail 標記不起作用

[英]Gmail markup for event booking not working

我正在嘗試向 Gmail 地址發送一封帶有事件模板的電子郵件,這將在收件人的 Google 日歷中創建一個事件。 嘗試使用標准 C# 控制台應用程序執行此操作。 下面是我的代碼。

收件人已成功接收電子郵件,但日歷中未創建任何事件。

<html>
  <body>
    <div itemscope itemtype="http://schema.org/EventReservation">
     <meta itemprop="reservationNumber" content="IO1234567"/>
     <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
     <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
        <meta itemprop="name" content="John Smith"/>
      </div>
      <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event">
        <meta itemprop="name" content="Google I/O 2013"/>
        <time itemprop="startDate" datetime="2018-03-03T08:30:00-08:00"/>
        <div itemprop="location" itemscope itemtype="http://schema.org/Place">
          <meta itemprop="name" content="Moscone Center"/>
          <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
            <meta itemprop="streetAddress" content="800 Howard St."/>
            <meta itemprop="addressLocality" content="San Francisco"/>
            <meta itemprop="addressRegion" content="CA"/>
            <meta itemprop="postalCode" content="94103"/>
        <meta itemprop="addressCountry" content="US"/>
          </div>
        </div>
      </div>
    </div>
    <p>
      Dear John, thanks for booking your Google I/O ticket with us.
    </p>
    <p>
      BOOKING DETAILS<br/>
      Reservation number: IO12345<br/>
      Order for: John Smith<br/>
      Event: Google I/O 2013<br/>
      Start time: March 3rd 2018 8:00am PST<br/>
      Venue: Moscone Center, 800 Howard St., San Francisco, CA 94103<br/>
    </p>
  </body>
</html>

請幫助我確定我哪里出錯了。

我建議使用JSON-LD 格式,並且您還需要確保向 Google 注冊您的站點/產品以將您的電子郵件地址列入白名單,否則這些都不起作用,Google 將忽略您的架構。

您可以在此處執行此操作: https : //developers.google.com/gmail/markup/registering-with-google

暫無
暫無

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

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