我正在尝试将包含活动模板的电子邮件发送到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>
请帮我确定哪里出错了。
答案 0 :(得分:1)
我建议您使用JSON-LD format,并且您还需要确保向Google注册您的网站/产品,以便将您的电子邮件地址列入白名单,否则这些都不起作用,Google将忽略您的架构。
您可以在此处执行此操作:https://developers.google.com/gmail/markup/registering-with-google