2016-03-06 83 views
1

我测试的所有示例与此邮件发件人:https://putsmail.com/tests/new为Google Mail(以及其他软件)添加直接操作?

我阅读文档:https://developers.google.com/gmail/markup/getting-started#your_first_markup

而这正是我想要的(例如)。通常我想要一个普通的URL点击操作。预订是下一个级别。

Reservation direct action on GMail

第一次测试是JSON-LD之一:

<html> 
    <body> 
    <script type="application/ld+json"> 
    { 
     "@context":    "http://schema.org", 
     "@type":     "EventReservation", 
     "reservationNumber":  "IO12345", 
     "underName": { 
     "@type":    "Person", 
     "name":    "John Smith" 
     }, 
     "reservationFor": { 
     "@type":    "Event", 
     "name":    "Google I/O 2013", 
     "startDate":   "2013-05-15T08:30:00-08:00", 
     "location": { 
      "@type":    "Place", 
      "name":    "Moscone Center", 
      "address": { 
      "@type":   "PostalAddress", 
      "streetAddress": "800 Howard St.", 
      "addressLocality": "San Francisco", 
      "addressRegion": "CA", 
      "postalCode":  "94103", 
      "addressCountry": "US" 
      } 
     } 
     } 
    } 
    </script> 
    <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: May 15th 2013 8:00am PST<br/> 
     Venue: Moscone Center, 800 Howard St., San Francisco, CA 94103<br/> 
    </p> 
    </body> 
</html> 

然后我试图用这个微观数据的事情:

<html> 
    <body> 
    <div itemscope itemtype="http://schema.org/EventReservation"> 
     <meta itemprop="reservationNumber" content="IO12345"/> 
     <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="2013-05-15T08: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: May 15th 2013 8:00am PST<br/> 
     Venue: Moscone Center, 800 Howard St., San Francisco, CA 94103<br/> 
    </p> 
    </body> 
</html> 

但我从来没有看到这个按钮。在邮件的源代码中,我看到:

Delivered-To: [email protected] 
Date: Sun, 06 Mar 2016 22:40:14 +0000 
From: [email protected] 
To: [email protected] 
Message-ID: <[email protected]b787.mail> 
Subject: test 
Mime-Version: 1.0 
Content-Type: multipart/alternative; 
boundary="--==_mimepart_56dcb1ceba24_33fda3a013ebc75828"; 
charset=UTF-8 
Content-Transfer-Encoding: 7bit 

----==_mimepart_56dcb1ceba24_33fda3a013ebc75828 
Content-Type: text/plain; 
charset=UTF-8 
Content-Transfer-Encoding: 7bit 


----==_mimepart_56dcb1ceba24_33fda3a013ebc75828 
Content-Type: text/html; 
charset=UTF-8 
Content-Transfer-Encoding: 7bit 


<html> 
    <body> 
    <div itemscope itemtype="http://schema.org/EventReservation"> 
     <meta itemprop="reservationNumber" content="IO12345"/> 
     <meta itemprop="reservationStatus" content="Ok"/> 
     <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="2013-05-15T08: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: May 15th 2013 8:00am PST<br/> 
     Venue: Moscone Center, 800 Howard St., San Francisco, CA 94103<br/> 
    </p> 
    </body> 
</html> 

----==_mimepart_56dcb1ceba24_33fda3a013ebc75828-- 

也许你知道这是怎么工作的?

回答

1

您需要从您自己的帐户发送电子邮件或列入白名单并通过DKIM或SPF验证邮件。有关更多详细信息,请参见https://developers.google.com/gmail/markup/registering-with-google

+0

非常感谢!我不知道为什么我会阅读该怎么做,然后我相信每个人都可以做到这一点。我尝试使用示例邮件向我的应用程序注册Google白名单。谢谢。 – Patrick

相关问题