Email Snippets
Email Snippets in Zoho Mail ensure that important information from an email is highlighted in the email preview. In business scenarios, there might be emails containing information that needs to be highlighted and showed to the users. This can be done by parsing certain sections of the email and in a specific format.
Schema.org is a collaborative community that is working on creating and promoting schemas for structured data markup on the internet. The format defined by schema.org is understood by Zoho Mail and this markup will be highlighted and rendered as Email Snippets in the email preview.
Highlighting Email Snippets
To highlight important sections of your email, and display them in the email preview you can embed a JSON-LD or Microdata script in the body of your email content. This script will render the sections of the email that you want to be displayed in the email preview. For example, in a flight ticket reservation email, sections such as the flight number, the departure time, the boarding and arrival points can be highlighted. This makes it easier for the user to comprehend the details that are most necessary in the email at a glance.
In addition to embedding the script, you will have to register with us to identify the Email Snippets that have been parsed in the email. You can register your domain using this link. The domain registration process will be completed after a review of the domain. The organization that has sent the registration request will be contacted, in case there are any further clarifications in this regard.
Similarly, highlighting parts of the email will also be useful in cases of order confirmation emails from e-commerce websites and package tracking emails sent from courier agencies.
Things to do for Zoho Mail to highlight Email Snippets
To highlight snippets in the emails you send, there are two things that need to be checked.
- The email that you're sending should contain a specific script embedded in either the Microdata or the JSON-LD format.
- The domain from which you send these email should be registered in our identified list of domains.
Format for highlighting Email Snippets
To highlight snippets in the emails that you send out, you will have to embed a script in the email that you're sending. Zoho Mail supports both JSON-LD and Microdata formats in the email markup.
Microdata
Microdata is a markup language that has been designed to describe and highlight specific parts of an email. Each of this markup can contain associated attributes. In the Microdata format, the three basic attributes used are itemtype, itemprop and itemscope.
Itemscope - The usage of this attribute within a div tag denotes that all information enclosed within this div tag belongs to a single entity.
Itemtype - When you mention an itemtype, it denotes that all elements within that scope come under the class that is mentioned. You can set this to any of the classes available under the schema.org class.
Itemprop - Additional information about the class mentioned as the itemtype can be provided using this attribute.
JSON-LD
JSON-LD is a JSON based syntax that's another markup language which is commonly used. In the JSON-LD format, the @context is set to http://schema.org, the @type is set to any of the classes available under the schema.org class, and the properties of that class are defined in the script.
Syntax for Highlighting Email Snippets
Flight Ticket Confirmation
When you receive the confirmation emails for flight tickets, certain important data such as the boarding time, boarding and destination airports, the date of journey, etc. can be highlighted and shown to users to help them understand the essence of the email at a quick glance.
Use cases
Basic Flight Ticket
JSON-LD
http://schema.org
",http://schema.org/Confirmed
",Microdata
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
">Boarding Pass
If you need the boarding pass details to be highlighted along the rest of the content, you can make use of this syntax.
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>
Microdata
<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>
Check-In Button
In addition to highlighting the flight and passenger details, you can also add an Check-In button in the email listing using this syntax.
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>
Microdata
<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>
Update a Flight
There might be cases where there's a change in the flight timing or other ticket details. In such cases, you can send an email with the updated flight and ticket details. You can make use of this syntax to highlight parts of your email, when the flight time is being modified.
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>
Microdata
<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>
Cancel a Flight
This syntax can be used to show the user that a ticket which was booked for a specific time has been cancelled.
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>
Microdata
<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>
Flight Ticket with Multiple Segments
When you're booking a ticket to a destination that doesn't have a direct flight, and has some transit, it's called a multiple segmented flight. In this case, the ticket will booked such that you reach an intermediate destination, and take another flight from there to your end destination. This syntax can be used to highlight parts of such emails.
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>
Microdata
<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>
Flight Ticket with Multiple passengers
When a ticket is booked for more than one passenger at once, this syntax can be used to highlight details of all passenger in the email listing.
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>
Microdata
<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>
Order Confirmation
When you place an order with an online store, you receive a confirmation email that specifies the items that have been ordered etc. These details from the email can be highlighted and shown in a glance.
Use cases
Basic Order Details
This syntax can be used to highlight the basic details such as the order number, the price, the item ordered, the website from which it was ordered etc.
JSON-LD
http://schema.org
",saltychocolates.com
"Microdata
http://schema.org/Order
"> http://schema.org/Organization
">saltychocolates.com
"/>http://schema.org/Offer
">http://schema.org/Product
">http://schema.org/QuantitativeValue
">Order Confirmation with View Order Action
This syntax sends the email with the basic order details, and the View Order button will be embedded in the email listing.
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
"Microdata
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
">Order Confirmation with Billing Details
If you want to highlight the payment details of the order, along with other order details this syntax can be used.
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
"Microdata
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
">Package Tracking
Basic Package Tracking
The details of a courier service that was used to send a package, the tracking ID etc. can be highlighted when an email specifying the tracking details is sent.
JSON-LD
http://schema.org
",saltychocolates.com
"Microdata
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
"/>Package Tracking with Shipping Details
In addition to the basic package tracking, you can also embed the other details of the shipment in the script to highlight these parts.
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
"Microdata
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
"/>Registration form for highlighting Email Snippets:
For Zoho Mail to identify the script that you're embedding in your email, and to ensure that the domain it's being sent from is valid, it has to be registered with us.
Follow this link to register with us, so that your Email Snippets can be identified by Zoho Mail. The domain registration process will be completed after a review of the domain. The organization that has sent the registration request will be contacted, in case there are any further clarifications in this regard.