电子邮件片段
Zoho Mail 中的电子邮件片段可以确保在预览电子邮件时突出显示其中包含的重要信息。在业务场景中,可能会有一些电子邮件包含需要突出显示给用户的信息。这部分信息可通过以特定格式解析电子邮件的相关部分来确定。
Schema.org 是一个协作社区,致力于创建结构化数据标记架构并在互联网上推广。Zoho Mail 能够识别 schema.org 定义的格式,会在电子邮件预览窗格中突出显示此标记,并将其呈现为电子邮件片段。
突出显示电子邮件片段
要突出显示电子邮件的重要部分,并将它们显示在电子邮件预览窗格中,您可以在电子邮件内容的正文中嵌入 JSON-LD 或微数据脚本。此脚本将呈现要显示在电子邮件预览窗格中的电子邮件部分。例如,在机票预订电子邮件中,可以突出显示航班号、起飞时间、登机地点和到达地点等部分。这样可方便用户一目了然地了解电子邮件中的重要详细信息。
除了嵌入脚本外,您还必须向我们注册,以识别电子邮件中已解析的电子邮件片段。您可以使用此链接注册您的域。域注册过程将在域审核完成后结束。如果有任何其他信息需要进一步澄清,我们会联系发送注册请求的机构。
同样,突出显示电子邮件的特定部分也非常有帮助,比如在电子商务网站发来的订单确认电子邮件中,或快递公司发来的包裹跟踪电子邮件中。
确保 Zoho Mail 突出显示电子邮件片段所需满足的条件
要突出显示您发送的电子邮件中的片段,需要检查两点。
- 您发送的电子邮件中应包含以微数据或 JSON-LD 格式嵌入的特定脚本。
- 您用来发送这些电子邮件的域应当已经在我们的已识别域列表中注册。
用于突出显示电子邮件片段的格式
要突出显示您发送的电子邮件中的片段,您必须在该电子邮件中嵌入脚本。Zoho Mail 支持在电子邮件标记中使用 JSON-LD 和微数据两种格式。
微数据
微数据是一种标记语言,用于描述和突出显示电子邮件的特定部分。每个标记都会包含相关联的属性。微数据格式使用的三个基本属性包括 itemtype、itemprop 和 itemscope。
Itemscope - 在 div 标记中使用此属性,表示此 div 标记中包含的所有信息都属于单个实体。
Itemtype - 使用 itemtype 属性时,表示该范围内的所有元素都属于所提及的类。您可以将此属性设置为 下的任何可用类。
Itemprop - 针对作为 itemtype 提及的类,可通过此属性提供额外的信息。
JSON-LD
JSON-LD 是一种基于 JSON(另一种常用标记语言)的语法。在 JSON-LD 格式中,@context 设置为 http://schema.org,@type 设置为 下的任何可用类,该类的属性在脚本中定义。
用于突出显示电子邮件片段的语法
机票确认
当您收到机票的确认电子邮件时,邮件中的某些重要数据(如登机时间、登机机场和目的地机场、行程日期等)会呈突出显示状态,以帮助您快速了解邮件中的重要信息。
普通机票
JSON-LD
http://schema.org
",http://schema.org/Confirmed
",微数据
http://schema.org/FlightReservation
”>http://schema.org/Confirmed
"/> http://schema.org/Person
”>http://schema.org/Flight
">http://schema.org/Airline
">http://schema.org/Airport
">http://schema.org/Airport
">登机牌
如果您需要在其余内容中突出显示登机牌的详细信息,可以使用此语法。
JSON-LD
<script type="application/ld+json"> { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743", "reservationStatus": "http://schema.org/Confirmed
", "underName": { "@type": "Person", "name": "Rebecca Anderson" }, "reservationFor": { "@type": "Flight", "flightNumber": "914", "airline": { "@type": "Airline", "name": "Pan American World Airways", "iataCode": "PA" }, "departureAirport": { "@type": "Airport", "name": " John F. Kennedy International Airport ", "iataCode": "JFK" }, "departureTime": " 2018-04-07T18:20:00-06:00", "arrivalAirport": { "@type": "Airport", "name": " Miami International Airport ", "iataCode": "MIA" }, "arrivalTime": " 2018-04-08T14:30:00-05:00 " }, "airplaneSeat": "5C", "airplaneSeatClass": { "@type": "AirplaneSeatClass", "name": "Economy" }, "ticketNumber": "FIG546", "ticketToken": "qrCode:FG56", "checkinUrl": "http://panam.org/onlinecheckin.html
" } </script>
微数据
<div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content=" TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Rebecca Anderson"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="914"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content=" Pan American World Airways"/> <meta itemprop="iataCode" content="PA"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content=" John F. Kennedy International Airport "/> <meta itemprop="iataCode" content="JFK"/> </div> <meta itemprop="departureTime" content=" 2018-04-07T18:20:00-06:00 "/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content=" Miami International Airport "/> <meta itemprop="iataCode" content="MIA"/> </div> <meta itemprop="arrivalTime" content=" 2018-04-08T14:30:00-05:00"/> </div> <meta itemprop="airplaneSeat" content="5C"/> <div itemprop="airplaneSeatClass" itemscope itemtype="http://schema.org/AirplaneSeatClass
"> <meta itemprop="name" content="Economy"/> </div> <meta itemprop="ticketNumber" content=" FIG546 "/> <meta itemprop="ticketToken" content="qrCode:FG56"/> <link itemprop="checkInUrl" href="http://panam.org/onlinecheckin.html
"/> </div>
“值机”按钮
除了突出显示航班和乘客详细信息外,您还可以使用此语法在电子邮件列表中添加“值机”按钮。
JSON-LD
<script type="application/ld+json"> { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743 ", "reservationStatus": "http://schema.org/Confirmed
", "underName": { "@type": "Person", "name": "Rebecca Anderson" }, "reservationFor": { "@type": "Flight", "flightNumber": "914", "airline": { "@type": "Airline", "name": "Pan American World Airways", "iataCode": "PA" }, "departureAirport": { "@type": "Airport", "name": "John F. Kennedy International Airport", "iataCode": "JFK" }, "departureTime": "2018-04-07T18:20:00-06:00", "arrivalAirport": { "@type": "Airport", "name": "Miami International Airport", "iataCode": "MIA" }, "arrivalTime": "2018-04-08T14:30:00-05:00" }, "checkinUrl": "http://panam.org/onlinecheckin.html
", "potentialAction": { "@type": "CheckInAction", "target": "http://panam.org/onlinecheckin.html
" } } </script>
微数据
<div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content="TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Rebecca Anderson"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="914"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content="Pan American World Airways"/> <meta itemprop="iataCode" content="PA"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="John F. Kennedy International Airport"/> <meta itemprop="iataCode" content="JFK"/> </div> <meta itemprop="departureTime" content="2018-04-07T18:20:00-06:00"/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="Miami International Airport"/> <meta itemprop="iataCode" content="MIA"/> </div> <meta itemprop="arrivalTime" content="2018-04-08T14:30:00-05:00"/> </div> <link itemprop="checkinUrl" href="http://panam.org/onlinecheckin.html
"/> <div itemprop="potentialAction" itemscope itemtype="http://schema.org/CheckInAction
"> <link itemprop="target" href="http://panam.org/onlinecheckin.html
"/> </div> </div>
更新航班信息
航班时间或其他机票详情有时可能会发生变化。在此类情况下,您可以发送包含更新航班信息和机票详细信息的电子邮件。当航班时间发生变化后,您可以使用此语法突出显示电子邮件中的相关部分。
JSON-LD
<script type="application/ld+json"> { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743", "reservationStatus": "http://schema.org/Confirmed
", "underName": { "@type": "Person", "name": "Rebecca Anderson" }, "reservationFor": { "@type": "Flight", "flightNumber": "914", "airline": { "@type": "Airline", "name": "Pan American World Airways", "iataCode": "PA" }, "departureAirport": { "@type": "Airport", "name": "John F. Kennedy International Airport", "iataCode": "JFK" }, "departureTime": " 2018-04-07T18:20:00-06:00", "arrivalAirport": { "@type": "Airport", "name": "Miami International Airport", "iataCode": "MIA" }, "arrivalTime": "2018-04-08T14:30:00-05:00" }, "airplaneSeat": "5C", "airplaneSeatClass": { "@type": "AirplaneSeatClass", "name": "Economy" }, "checkinUrl": "http://panam.org/onlinecheckin.html
", "modifiedTime": "2018-04-07T11:30:00-08:00", "modifyReservationUrl": "http://panam.org/modifyreservation.html
" } </script>
微数据
<div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content="TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Rebecca Anderson"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="914"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content="Pan American World Airways"/> <meta itemprop="iataCode" content="PA"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="John F. Kennedy International Airport"/> <meta itemprop="iataCode" content="JFK"/> </div> <meta itemprop="departureTime" content="2018-04-07T18:20:00-06:00"/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="Miami International Airport"/> <meta itemprop="iataCode" content="MIA"/> </div> <meta itemprop="arrivalTime" content="2018-04-08T14:30:00-05:00"/> </div> <meta itemprop="airplaneSeat" content="5C"/> <div itemprop="airplaneSeatClass" itemscope itemtype="http://schema.org/AirplaneSeatClass
"> <meta itemprop="name" content="Economy"/> </div> <meta itemprop="modifiedTime" content="2018-04-07T11:30:00-08:00"/> <link itemprop="checkInUrl" href="http://panam.org/onlinecheckin.html
"/> <link itemprop="modifyReservationUrl" href="http://panam.org/modifyreservation.html
"/> </div>
取消航班
此语法可用于通知用户,其预订的指定时间的机票已被取消。
JSON-LD
<script type="application/ld+json"> { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743", "reservationStatus": "http://schema.org/Cancelled
", "underName": { "@type": "Person", "name": "Rebecca Anderson" }, "reservationFor": { "@type": "Flight", "flightNumber": "914", "airline": { "@type": "Airline", "name": "Pan American World Airways", "iataCode": "PA" }, "departureAirport": { "@type": "Airport", "name": "John F. Kennedy International Airport", "iataCode": "JFK" }, "departureTime": "2018-04-07T18:20:00-06:00", "arrivalAirport": { "@type": "Airport", "name": "Miami International Airport", "iataCode": "MIA" }, "arrivalTime": "2018-04-08T14:30:00-05:00" }, "checkinUrl": "http://panam.org/onlinecheckin.html
", "modifiedTime": "2018-04-07T11:30:00-08:00", "modifyReservationUrl": "http://panam.org/modifyreservation.html
" } </script>
微数据
<div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content="TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Cancelled
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Rebecca Anderson"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="914"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content="Pan American World Airways"/> <meta itemprop="iataCode" content="PA"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="John F. Kennedy International Airport"/> <meta itemprop="iataCode" content="JFK"/> </div> <meta itemprop="departureTime" content="2018-04-07T18:20:00-06:00"/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="Miami International Airport"/> <meta itemprop="iataCode" content="MIA"/> </div> <meta itemprop="arrivalTime" content="2018-04-08T14:30:00-05:00"/> </div> <meta itemprop="modifiedTime" content="2018-04-07T11:30:00-08:00"/> <link itemprop="checkInUrl" href="http://panam.org/onlinecheckin.html
"/> <link itemprop="modifyReservationUrl" href="http://panam.org/modifyreservation.html
"/> </div>
多航段机票
如果您要前往的目的地没有直达航班,只能中转,所预订的机票就叫做“多航段机票”。在这种情况下,您会到达中间目的地,然后从这里搭乘其他航班飞往最终目的地。您可以使用此语法来突出显示此类电子邮件中的重要部分。
JSON-LD
<script type="application/ld+json"> [ { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743", "reservationStatus": "http://schema.org/Confirmed
", "underName": { "@type": "Person", "name": "Rebecca Anderson" }, "reservationFor": { "@type": "Flight", "flightNumber": "761", "airline": { "@type": "Airline", "name": "Lufthansa", "iataCode": "LH" }, "departureAirport": { "@type": "Airport", "name": "Indira Gandhi International Airport", "iataCode": "DEL" }, "departureTime": "2018-03-04T11:00:00-05:00", "arrivalAirport": { "@type": "Airport", "name": "Frankfurt Airport", "iataCode": "FRA" }, "arrivalTime": "2018-03-05T13:25:00-06:00" }, "checkinUrl": "http://lufthansa.com/onlinecheckin.html
" }, { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743", "reservationStatus": "http://schema.org/Confirmed
", "underName": { "@type": "Person", "name": "Rebecca Anderson" }, "reservationFor": { "@type": "Flight", "flightNumber": "400", "airline": { "@type": "Airline", "name": "Lufthansa", "iataCode": "LH" }, "departureAirport": { "@type": "Airport", "name": "Frankfurt Airport", "iataCode": "FRA" }, "departureTime": "2018-03-05T14:55:00-06:00", "arrivalAirport": { "@type": "Airport", "name": "John F. Kennedy International Airport", "iataCode": "JFK" }, "arrivalTime": "2018-03-05T15:15:00-08:00" }, "checkinUrl": "http://lufthansa.com/onlinecheckin.html
" } ] </script>
微数据
<div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content="TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Rebecca Anderson"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="761"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content="Lufthansa"/> <meta itemprop="iataCode" content="LH"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="Indira Gandhi International Airport"/> <meta itemprop="iataCode" content="DEL"/> </div> <meta itemprop="departureTime" content="2018-03-04T11:00:00-05:00"/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content=" Frankfurt Airport"/> <meta itemprop="iataCode" content="FRA"/> </div> <meta itemprop="arrivalTime" content="2018-03-05T13:25:00-06:00"/> </div> <meta itemprop="modifiedTime" content="2018-03-01T08:30:00-08:00"/> </div> <div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content="TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Rebecca Anderson"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="400"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content="Lufthansa"/> <meta itemprop="iataCode" content="LH"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="Frankfurt Airport"/> <meta itemprop="iataCode" content="FRA"/> </div> <meta itemprop="departureTime" content="2018-03-05T14:55:00-06:00"/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="John F. Kennedy International Airport"/> <meta itemprop="iataCode" content="JFK"/> </div> <meta itemprop="arrivalTime" content="2018-03-05T15:15:00-08:00"/> </div> <meta itemprop="modifiedTime" content="2018-03-01T08:30:00-08:00"/> </div>
多乘客机票
一次性为多位乘客预订机票时,可以使用此语法来在电子邮件列表中突出显示所有乘客的详细信息。
JSON-LD
<script type="application/ld+json">
[ { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743", "reservationStatus": "http://schema.org/Confirmed
", "underName": { "@type": "Person", "name": "Justin Case" }, "reservationFor": { "@type": "Flight", "flightNumber": "914", "airline": { "@type": "Airline", "name": "Pan American World Airways", "iataCode": "PA" }, "departureAirport": { "@type": "Airport", "name": "John F. Kennedy International Airport", "iataCode": "JFK" }, "departureTime": "2018-03-04T11:00:00-05:00", "arrivalAirport": { "@type": "Airport", "name": "Miami International Airport", "iataCode": "MIA" }, "arrivalTime": "2018-03-05T13:25:00-06:00" }, "checkinUrl": "http://panam.org/onlinecheckin.html
" }, { "@context": "http://schema.org
", "@type": "FlightReservation", "reservationNumber": "TJK743", "reservationStatus": "http://schema.org/Confirmed
", "underName": { "@type": "Person", "name": "Rebecca Anderson" }, "reservationFor": { "@type": "Flight", "flightNumber": "914", "airline": { "@type": "Airline", "name": "Pan American World Airways", "iataCode": "PA" }, "departureAirport": { "@type": "Airport", "name": "John F. Kennedy International Airport", "iataCode": "JFK" }, "departureTime": "2018-03-04T11:00:00-05:00", "arrivalAirport": { "@type": "Airport", "name": "Miami International Airport", "iataCode": "MIA" }, "arrivalTime": "2018-03-05T13:25:00-06:00" }, "checkinUrl": "http://panam.org/onlinecheckin.html
" }
] </script>
微数据
<div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content="TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Justin Case"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="914"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content="Pan American World Airways"/> <meta itemprop="iataCode" content="PA"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="John F. Kennedy International Airport"/> <meta itemprop="iataCode" content="JFK"/> </div> <meta itemprop="departureTime" content="2018-03-04T11:00:00-05:00"/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="Miami International Airport"/> <meta itemprop="iataCode" content="MIA"/> </div> <meta itemprop="arrivalTime" content="2018-03-05T13:25:00-06:00"/> </div> <div itemscope itemtype="http://schema.org/FlightReservation
"> <meta itemprop="reservationNumber" content="TJK743"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed
"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person
"> <meta itemprop="name" content="Rebecca Anderson"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Flight
"> <meta itemprop="flightNumber" content="914"/> <div itemprop="airline" itemscope itemtype="http://schema.org/Airline
"> <meta itemprop="name" content="Pan American World Airways"/> <meta itemprop="iataCode" content="PA"/> </div> <div itemprop="departureAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="John F. Kennedy International Airport"/> <meta itemprop="iataCode" content="JFK"/> </div> <meta itemprop="departureTime" content="2018-03-05T14:55:00-06:00"/> <div itemprop="arrivalAirport" itemscope itemtype="http://schema.org/Airport
"> <meta itemprop="name" content="Miami International Airport"/> <meta itemprop="iataCode" content="MIA"/> </div> <meta itemprop="arrivalTime" content="2018-03-05T15:15:00-08:00"/> </div>
订单确认
当您在网上商店下单后,将会收到一封确认电子邮件,指明您所订购的商品等信息。系统将会突出显示电子邮件中的这些详细信息,以便您一目了然地查看相关信息。
基本订单详细信息
此语法可用于突出显示订单的基本详细信息,例如订单号、价格、所订购的商品及用来订购商品的网站等。
JSON-LD
http://schema.org
",saltychocolates.com
"微数据
http://schema.org/Order
"> http://schema.org/Organization
">saltychocolates.com
"/>http://schema.org/Offer
">http://schema.org/Product
">http://schema.org/QuantitativeValue
">订单确认与“查看订单”操作
此语法将发送包含基本订单详细信息的电子邮件,并在电子邮件列表中嵌入“查看订单”按钮。
JSON-LD
http://schema.org
”,saltychocolates.com
"http://schema.org/OrderProcessing
",http://saltychocolates.com/837428
",http://saltychocolates.com/images/837428.jpg
"https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673
",https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673
"微数据
http://schema.org/Order
">http://schema.org/Organization
">www.saltychocolates.com
"/>http://schema.org/OrderProcessing
"/>http://schema.org/Offer
">http://schema.org/Product
">http://saltychocolates.com/837428
"/>http://saltychocolates.com/images/837428.jpg
"/>http://schema.org/QuantitativeValue
">https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673
"/>http://schema.org/ViewAction
">https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673
"/>http://schema.org/PriceSpecification
">订单确认与结算详情
您可以使用此语法突出显示订单的详细付款信息以及其他订单详细信息。
JSON-LD
http://schema.org
",www.saltychocolates.com
"http://saltychocolates.com/837428
",http://saltychocolates.com/images/837428.jpg
"http://saltychocolates.com/837428
",http://saltychocolates.com/images/837428.jpg
"https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673
",https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673
"http://schema.org/OrderProcessing
",http://schema.org/CreditCard
"微数据
http://schema.org/Order
">http://schema.org/Organization
">www.saltychocolates.com
"/>http://schema.org/Offer
">http://schema.org/Product
">http://saltychocolates.com/837428"/
>http://saltychocolates.com/images/837428.jpg"/
>http://schema.org/QuantitativeValue
">http://schema.org/Organization
">http://schema.org/Offer
">http://schema.org/Product
">http://saltychocolates.com/837428"/
>http://saltychocolates.com/images/837428.jpg"/
>http://schema.org/QuantitativeValue
">http://schema.org/Organization
">https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"/
>http://schema.org/ViewAction
">https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"/
>http://schema.org/OrderProcessing"/
>http://schema.org/PaymentMethod
">http://schema.org/CreditCard
"/>http://schema.org/Person
">http://schema.org/PostalAddress
">http://schema.org/PriceSpecification
">包裹跟踪
基本包裹跟踪
当发送包含跟踪详情的电子邮件时,可以突出显示寄送包裹的快递公司的详细信息和跟踪 ID 等详细信息。
JSON-LD
http://schema.org
",saltychocolates.com
"微数据
http://schema.org/ParcelDelivery
">http://schema.org/PostalAddress
">http://schema.org/Organization
">http://schema.org/Product
">http://schema.org/Order
">http://schema.org/Organization
">saltychocolates.com
"/>包裹跟踪和发货详情
除了基本包裹跟踪外,您还可以在脚本中嵌入有关发货的其他详细信息以突出显示这些部分。
JSON-LD
http://schema.org
",http://dhl.com/
" http://saltychocolates.com/837428
",http://saltychocolates.com/images/837428.jpg
",http://dhl.com/track/3453291231
", http://dhl.com/track/3453291231
"http://schema.org/ParcelService
"http://www.saltychocolates.com
"http://schema.org/OrderInTransit
"微数据
http://schema.org/ParcelDelivery
">http://schema.org/PostalAddress
">http://schema.org/PostalAddress
">http://schema.org/Organization
">http://dhl.com/
"/>http://schema.org/Product
">http://saltychocolates.com/837428
"/>http://saltychocolates.com/images/837428.jpg
"/>http://schema.org/Brand
">http://dhl.com/track/3453291231
"/>http://schema.org/TrackAction
">http://dhl.com/track/3453291231
"/>http://schema.org/ParcelService
">http://schema.org/ParcelService
"/>http://schema.org/Order
">http://schema.org/Organization
">http://www.saltychocolates.com
"/>http://schema.org/OrderInTransit
"/>用于突出显示电子邮件片段的注册表单:
为了让 Zoho Mail 能够识别您嵌入在电子邮件中的脚本,并确保用来发送电子邮件的域有效,您必须向我们注册该域。
请单击此链接向我们注册,以便 Zoho Mail 能够识别您的电子邮件片段。域注册过程将在域审核完成后结束。如果有任何其他信息需要进一步澄清,我们会联系发送注册请求的机构。