E-Mail-Snippets

Mithilfe von E-Mail-Snippets wird in Zoho Mail sichergestellt, dass wichtige Informationen aus einer E-Mail in der E-Mail-Vorschau hervorgehoben werden. In Geschäftsszenarien können E-Mails mit Informationen verschickt werden, die hervorgehoben und den Benutzern angezeigt werden müssen. Dies kann durch eine Analyse bestimmter Abschnitte der E-Mail und in einem bestimmten Format erfolgen.

Schema.org ist eine kollaborative Community, die Markup-Schemata für strukturierte Daten im Internet erstellt und vertreibt. Zoho Mail versteht das von schema.org definierte Format, und dieses Markup wird in der E-Mail-Vorschau als E-Mail-Snippet hervorgehoben und dargestellt.

E-Mail-Snippets hervorheben

Um wichtige Abschnitte in einer E-Mail hervorzuheben und in der E-Mail-Vorschau anzuzeigen, können Sie ein JSON-LD- oder Microdata-Skript in den Textkörper des E-Mail-Inhalts einbetten. Durch dieses Skript werden die Abschnitte der E-Mail gerendert, die in der E-Mail-Vorschau angezeigt werden sollen. So werden z. B. in einer E-Mail mit einer Flugticketreservierung Abschnitte wie die Flugnummer und die Abflugzeit sowie der Start- und der Ankunftsort hervorgehoben. Dadurch wird es für den Benutzer einfacher, die in der E-Mail am dringendsten benötigten Details auf einen Blick zu verstehen.

Zusätzlich zur Einbettung des Skripts müssen Sie sich bei uns registrieren, um die E-Mail-Snippets zu identifizieren, die in der E-Mail analysiert wurden. Über folgenden Link können Sie Ihre Domäne registrieren. Der Domäne wird zunächst geprüft; anschließend wird die Registrierung abgeschlossen. Falls diesbezüglich noch Klärungsbedarf besteht, wird die Organisation kontaktiert, die die Registrierungsanfrage gesendet hat.

Analog dazu ist die Hervorhebung von Teilen der E-Mail auch im Falle von Auftragsbestätigungs-E-Mails von E-Commerce-Websites und Paketverfolgungs-E-Mails von Kurierdiensten nützlich.

Maßnahmen, damit Zoho Mail E-Mail-Snippets hervorhebt

Um Snippets in den von Ihnen gesendeten E-Mails hervorzuheben, müssen zwei Dinge überprüft werden.

  • Die E-Mails, die Sie senden, müssen ein bestimmtes Skript enthalten, das entweder in das Microdata-Format oder das JSON-LD-Format eingebettet ist.
  • Die Domäne, von der Sie diese E-Mail senden, muss in unserer Liste bekannter Domänen registriert sein.

Format zum Hervorheben von E-Mail-Snippets

Um Snippets in von Ihnen gesendeten E-Mails hervorzuheben, müssen Sie ein Skript in die von Ihnen versendete E-Mail einbetten. Zoho Mail unterstützt sowohl das JSON-LD-Format als auch das Microdata-Format im E-Mail-Markup.

Microdata

Microdata ist eine Markup-Sprache, die bestimmte Teile einer E-Mail beschreiben und hervorheben soll. Jedes dieser Markups kann zugeordnete Attribute enthalten. Die drei grundlegenden Attribute, die im Microdata-Format verwendet werden, sind itemtype, itemprop und itemscope.

Itemscope – Die Verwendung dieses Attributs innerhalb eines div-Tags bedeutet, dass alle in diesem div-Tag enthaltenen Informationen zu einer einzigen Entität gehören.

Itemtype – Wenn Sie einen ItemType erwähnen, bedeutet dies, dass alle Elemente dem Geltungsbereich der genannten Klasse angehören. Sie können dies für jede der Klassen festlegen, die unter schema.org verfügbar sind.

Itemprop – Mit diesem Attribut können zusätzliche Informationen über die als itemtype erwähnte Klasse bereitgestellt werden.

JSON-LD

JSON-LD ist eine Syntax auf Grundlage von JSON, einer weiteren häufig verwendeten Markup-Sprache. Im JSON-LD-Format sind der @context als http://schema.org und der @type als eine der unter schema.org verfügbaren Klassen festgelegt. Die Eigenschaften dieser Klasse werden im Skript definiert.

Syntax zum Hervorheben von E-Mail-Snippets

Flugticketbestätigung

In Bestätigungs-E-Mails für Flugtickets, die Sie erhalten, können bestimmte wichtige Daten wie die Boarding-Zeit, der Abflug- und der Zielflughafen sowie das Reisedatum hervorgehoben und den Benutzern dadurch deutlich angezeigt werden, damit sie den Inhalt der E-Mail auf einen Blick erfassen können.

Reguläres Flugticket

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"
}
}
</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>
</div>

Bordkarte

Wenn Sie möchten, dass die Informationen auf der Bordkarte vom Rest des Inhalts abgehoben werden, verwenden Sie die folgende 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>

Schaltfläche zum Einchecken

Neben der Hervorhebung der Flug- und Passagierdaten können Sie mit dieser Syntax auch der E-Mail-Liste eine Schaltfläche zum Einchecken hinzufügen.

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>

Flugänderung

Es kann vorkommen, dass sich die Flugzeiten oder andere Ticketdaten ändern. In solchen Fällen können Sie eine E-Mail mit den aktualisierten Flug- und Ticketdaten senden. Sie können die folgende Syntax verwenden, um Teile der E-Mail hervorzuheben, wenn die Flugzeit geändert wird.

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>

Flugstornierung

Sie können die folgende Syntax verwenden, um dem Benutzer anzuzeigen, dass ein für einen bestimmten Zeitpunkt gebuchtes Ticket storniert wurde.

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>

Flugticket mit mehreren Segmenten

Wenn Sie ein Ticket zu einem Ziel buchen, für das kein Direktflug verfügbar ist, sodass ein Zwischenstopp erforderlich ist, spricht man von einem mehrteiligen Flug. In diesem Fall wird das Ticket so gebucht, dass Sie einen Zwischenstopp einlegen und von dort mit einem weiteren Flug zu Ihrem Endziel gelangen. Die folgende Syntax kann verwendet werden, um Teile dieser E-Mails hervorzuheben.

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>

Flug mit mehreren Passagieren

Wenn ein Ticket für mehrere Passagiere gleichzeitig gebucht wird, kann die folgende Syntax verwendet werden, um die Daten aller Passagiere in der E-Mail-Liste hervorzuheben.

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>

Auftragsbestätigung

Wenn Sie eine Bestellung bei einem Online-Shop aufgeben, erhalten Sie eine Bestätigungs-E-Mail, in der die bestellten Artikel usw. angegeben sind. Diese Angaben können in der E-Mail hervorgehoben und auf einen Blick angezeigt werden.

Grundlegende Auftragsdaten

Die folgende Syntax kann verwendet werden, um die grundlegenden Details wie die Bestellnummer, den Preis, den bestellten Artikel, die Website, über die die Bestellung aufgegeben wurde usw. hervorzuheben.

JSON-LD

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Order",
"merchant": {
"@type": "Organization",
"name": “saltychocolates.com"
},
"orderNumber": “64527137-237673",
"priceCurrency": "USD",
"price": “15,99",
"acceptedOffer": {
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": “Chocolate coated Hazelnut crunchies”
},
"price": “15,99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": “1"
}
}
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/Order">
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="saltychocolates.com"/>
</div>
<meta itemprop="orderNumber" content="64527137-237673"/>
<meta itemprop="priceCurrency" content="USD"/>
<meta itemprop="price" content=“15.99"/>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Chocolate coated Hazelnut crunchies"/>
</div>
<meta itemprop="price" content=“15.99"/>
<meta itemprop="priceCurrency" content="USD"/>
[[SDLENTITIREF[lt]]]div itemprop=„eligibleQuantity“ itemscope itemtype="http://schema.org/QuantitativeValue[[SDLENTITIREF[gt]]]
<meta itemprop="value" content="1"/>
</div>
</div>
</div>

Auftragsbestätigung mit Aktion zum Anzeigen der Bestellung

Die folgende Syntax sendet die E-Mail mit den grundlegenden Auftragsdaten und die Schaltfläche "View Order“ wird in die E-Mail-Liste eingebettet.

JSON-LD

<script type="application/ld+json">
{
"@context": "http://schema.org”,
"@type": "Order",
"merchant": {
"@type": "Organization",
"name": "saltychocolates.com"
},
"orderNumber": "64527137-237673",
"orderStatus": "http://schema.org/OrderProcessing",
"priceCurrency": "USD",
"price": “15,99",
"priceSpecification": {
"@type": "PriceSpecification",
"validFrom": "2018-12-07T23:30:00-08:00"
},
"acceptedOffer": {
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Chocolate coated Hazelnut crunchies",
"sku": "837428",
"url": "http://saltychocolates.com/837428",
"image": "http://saltychocolates.com/images/837428.jpg"
},
"price": “15,99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": "1"
}
},
"url": "https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673",
"potentialAction": {
"@type": "ViewAction",
"url": "https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"
}
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/Order">
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content=“www.saltychocolates.com"/>
</div>
<link itemprop="orderStatus" href="http://schema.org/OrderProcessing"/>
<meta itemprop="orderNumber" content="64527137-237673”/>
<meta itemprop="priceCurrency" content="USD"/>
<meta itemprop="price" content=“15.99"/>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Chocolate coated Hazelnut crunchies"/>
<link itemprop="url" href="http://saltychocolates.com/837428"/>
<link itemprop="image" href="http://saltychocolates.com/images/837428.jpg"/>
<meta itemprop="sku" content="837428"/>
</div>
<meta itemprop="price" content=“15.99"/>
<meta itemprop="priceCurrency" content="USD"/>
[[SDLENTITIREF[lt]]]div itemprop=„eligibleQuantity“ itemscope itemtype=„http://schema.org/QuantitativeValue[[SDLENTITIREF[gt]]]
<meta itemprop="value" content="1"/>
</div>
</div>
<link itemprop="url" href="https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
<link itemprop="url" href="https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"/>
</div>
<div itemprop="priceSpecification" itemscope itemtype="http://schema.org/PriceSpecification">
<meta itemprop="validFrom" content="2018-12-07T23:30:00-08:00"/>
</div>
</div>

Auftragsbestätigung mit Rechnungsdaten

Wenn Sie die Zahlungsdaten der Bestellung hervorheben möchten, kann die folgende Syntax zusammen mit anderen Bestelldaten verwendet werden.

JSON-LD

<script type="application/ld+json”>
{
"@context": "http://schema.org",
"@type": "Order",
"merchant": {
"@type": "Organization",
"name": "www.saltychocolates.com"
},
"orderNumber": "64527137-237673",
"priceCurrency": "USD",
"price": “15,99",
"priceSpecification": {
"@type": "PriceSpecification",
"validFrom": "2018-12-07T23:30:00-08:00"
},
"acceptedOffer": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Chocolate coated Hazelnut crunchies",
"sku": "837428”,
"url": "http://saltychocolates.com/837428 ",
"image": "http://saltychocolates.com/images/837428.jpg"
},
"price": “15,99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": “1"
},
"seller": {
"@type": "Organization"
"name": “Salty Chocolates"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Chocolate coated Hazelnut crunchies",
"sku": "837428",
"url": "http://saltychocolates.com/837428",
"image": "http://saltychocolates.com/images/837428.jpg"
},
"price": “15,99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": "1"
},
"seller": {
"@type": "Organization",
"name": “Salty Chocolates"
}
}
],
"url": "https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673",
"potentialAction": {
"@type": "ViewAction",
"url": "https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"
},
"orderStatus": "http://schema.org/OrderProcessing",
"paymentMethod": {
"@type": "PaymentMethod",
"name": "http://schema.org/CreditCard"
},
"paymentMethodId": "**** **** **** 1234",
"orderDate": "2018-11-07T23:30:00-08:00",
"isGift": "false",
"discount": "0,90",
"discountCurrency": "USD",
"customer": {
"@type": "Person",
"name": “Rebecca Anderson"
},
"billingAddress": {
"@type": "PostalAddress",
"name": “Zylker Inc.",
"streetAddress": “43, Shirley Avenue",
"addressLocality": “North Carolina",
"addressRegion": "CA",
"addressCountry": "USA"
}
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/Order">
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="www.saltychocolates.com"/>
</div>
<meta itemprop="orderNumber" content="64527137-237673 "/>
<meta itemprop="priceCurrency" content="USD"/>
<meta itemprop="price" content="15.99"/>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Chocolate coated Hazelnut crunchies"/>
<meta itemprop="sku" content="837428"/>
<link itemprop="url" href="http://saltychocolates.com/837428"/>
<link itemprop="image"href="http://saltychocolates.com/images/837428.jpg"/>
</div>
<meta itemprop="price" content="15.99"/>
<meta itemprop="priceCurrency" content="USD"/>
[[SDLENTITIREF[lt]]]div itemprop=„eligibleQuantity“ itemscope itemtype=„http://schema.org/QuantitativeValue[[SDLENTITIREF[gt]]]
<meta itemprop="value" content="1"/>
</div>
<div itemprop="seller" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Salty Chocolates"/>
</div>
</div>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Chocolate coated Hazelnut crunchies"/>
<meta itemprop="sku" content="837428"/>
<link itemprop="url" href="http://saltychocolates.com/837428"/>
<link itemprop="image" href="http://saltychocolates.com/images/837428.jpg"/>
</div>
<meta itemprop="price" content="15.99"/>
<meta itemprop="priceCurrency" content="USD"/>
[[SDLENTITIREF[lt]]]div itemprop=„eligibleQuantity“ itemscope itemtype=„http://schema.org/QuantitativeValue[[SDLENTITIREF[gt]]]
<meta itemprop="value" content="1"/>
</div>
<div itemprop="seller" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Salty Chocolates"/>
</div>
</div>
<link itemprop="url" href="https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
<link itemprop="url" https://www.saltychocolates.com//summary/edit.html/orderID=64527137-237673"/>
</div>
<link itemprop="orderStatus" href="http://schema.org/OrderProcessing"/>
<div itemprop="paymentMethod" itemscope itemtype="http://schema.org/PaymentMethod">
<meta itemprop="name" content="http://schema.org/CreditCard"/>
</div>
<meta itemprop="paymentMethodId" content="**** **** **** 1234"/>
<meta itemprop="orderDate" content="2018-11-07T23:30:00-08:00"/>
<meta itemprop="isGift" content="false"/>
<meta itemprop="discount" content="0.90"/>
<meta itemprop="discountCurrency" content="USD"/>
<div itemprop="customer" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Rebecca Anderson"/>
</div>
<div itemprop="billingAddress" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="name" content="Zylker Inc."/>
<meta itemprop="streetAddress" content="42, Shirley Avenue"/>
<meta itemprop="addressLocality" content="North Carolina"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="addressCountry" content="USA"/>
</div>
<div itemprop="priceSpecification" itemscope itemtype="http://schema.org/PriceSpecification">
<meta itemprop="validFrom" content="2018-12-07T23:30:00-08:00"/>
</div>
</div>

Paketverfolgung

Einfache Sendungsverfolgung

Die Daten eines Kurierdienstes, mit dem ein Paket versendet wurde, z. B. die Verfolgungs-ID usw., können hervorgehoben werden, wenn eine E-Mail mit den Verfolgungsinformationen gesendet wird.

JSON-LD

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ParcelDelivery",
"deliveryAddress": {
"@type": "PostalAddress",
"name": “Chocolate House",
"streetAddress": "42 Shirley Ave.",
"addressLocality": “West Chicago",
"addressRegion": "CA",
"addressCountry": "US",
"postalCode": “60185"
},
"expectedArrivalUntil": "2018-03-12T12:00:00-08:00",
"carrier": {
"@type": "Organization",
"name": “DHL"
},
"itemShipped": {
"@type": "Product",
"name": "Chocolate coated Hazelnut crunchies"
},
"partOfOrder": {
"@type": "Order",
"orderNumber": "64527137-237673",
"merchant": {
"@type": "Organization",
"name": “saltychocolates.com"
}
}
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/ParcelDelivery">
<div itemprop="deliveryAddress" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="name" content="Chocolate House"/>
<meta itemprop="streetAddress" content="42 Shirley Ave."/>
<meta itemprop="addressLocality" content="West Chicago"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="addressCountry" content="US"/>
<meta itemprop="postalCode" content=“60185”/>
</div>
<meta itemprop="expectedArrivalUntil" content="2018-03-12T12:00:00-08:00"/>
<div itemprop="carrier" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content=“DHL"/>
</div>
<div itemprop="itemShipped" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Chocolate coated Hazelnut crunchies"/>
</div>
<div itemprop="partOfOrder" itemscope itemtype="http://schema.org/Order">
<meta itemprop="orderNumber" content="64527137-237673"/>
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="saltychocolates.com"/>
</div>
</div>
</div>

Sendungsverfolgung mit Versanddaten

Zusätzlich zur einfachen Paketverfolgung können Sie auch die anderen Daten zu der Lieferung in das Skript einbetten, um sie hervorzuheben.

JSON-LD

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ParcelDelivery",
"deliveryAddress": {
"@type": "PostalAddress",
"name": “Rebecca Anderson",
"streetAddress": "42 Shirley Ave.",
"addressLocality": "West Chicago",
"addressRegion": "CA",
"addressCountry": "US",
"postalCode": "60185"
},
"originAddress": {
"@type": "PostalAddress",
"name": “Rebecca Anderson",
"streetAddress": "42 Shirley Ave.",
"addressLocality": "West Chicago",
"addressRegion": "CA",
"addressCountry": "US",
"postalCode": “60185"
},
"expectedArrivalFrom": "2018-07-13T12:00:00-08:00",
"expectedArrivalUntil": "2018-07-17T12:00:00-08:00",
"carrier": {
"@type": "Organization",
"name": “DHL",
"url": "http://dhl.com/"
},
"itemShipped": {
"@type": "Product",
"name": "Chocolate coated Hazelnut crunchies",
"url": "http://saltychocolates.com/837428",
"image": "http://saltychocolates.com/images/837428.jpg",
"sku": "837428",
"description": "Chocolate coated Hazelnut crunchies",
"brand": {
"@type": "Brand",
"name": “Salty Chocolates"
},
},
"trackingNumber": "3453291231",
"trackingUrl": "http://dhl.com/track/3453291231",
"potentialAction": {
"@type": "TrackAction",
"url": "http://dhl.com/track/3453291231"
},
"hasDeliveryMethod": {
"@type": "ParcelService",
"name": "http://schema.org/ParcelService"
},
"partOfOrder": {
"@type": "Order",
"orderNumber": "64527137-237673",
"merchant": {
"@type": "Organization",
"name": “Salty Chocolates",
"sameAs": "http://www.saltychocolates.com"
},
"orderStatus": "http://schema.org/OrderInTransit"
}
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/ParcelDelivery">
<div itemprop="deliveryAddress" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="name" content=“Rebecca Anderson"/>
<meta itemprop="streetAddress" content="42 Shirley Ave."/>
<meta itemprop="addressLocality" content=“West Chicago"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="addressCountry" content="US"/>
<meta itemprop="postalCode" content=“60185"/>
</div>
<div itemprop="originAddress" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="name" content=“Rebecca Anderson"/>
<meta itemprop="streetAddress" content="42 Shirley Ave."/>
<meta itemprop="addressLocality" content=“West Chicago"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="addressCountry" content="US"/>
<meta itemprop="postalCode" content=“60185"/>
</div>
<meta itemprop="expectedArrivalFrom" content="2018-07-13T12:00:00-08:00"/>
<meta itemprop="expectedArrivalUntil" content="2018-07-17T12:00:00-08:00"/>
<div itemprop="carrier" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content=“DHL"/>
<link itemprop="url" href="http://dhl.com/"/>
</div>
<div itemprop="itemShipped" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Chocolate coated Hazelnut crunchies"/>
<link itemprop="url" href="http://saltychocolates.com/837428"/>
<link itemprop="image" href="http://saltychocolates.com/images/837428.jpg"/>
<meta itemprop="sku" content="837428"/>
<meta itemprop="description" content="Chocolate coated Hazelnut crunchies"/>
<div itemprop="brand" itemscope itemtype="http://schema.org/Brand">
<meta itemprop="name" content=“Salty Chocolates"/>
</div>
</div>
<meta itemprop="trackingNumber" content="3453291231"/>
<link itemprop="trackingUrl" href="http://dhl.com/track/3453291231"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/TrackAction">
<link itemprop="url" href="http://dhl.com/track/3453291231"/>
</div>
<div itemprop="hasDeliveryMethod" itemscope itemtype="http://schema.org/ParcelService">
<meta itemprop="name" content="http://schema.org/ParcelService"/>
</div>
<div itemprop="partOfOrder" itemscope itemtype="http://schema.org/Order">
<meta itemprop="orderNumber" content="64527137-237673"/>
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content=“Salty Chocolates"/>
<link itemprop="sameAs" href="http://www.saltychocolates.com"/>
</div>
<link itemprop="orderStatus" href="http://schema.org/OrderInTransit"/>
</div>
</div>

Registrierungsformular zum Hervorheben von E-Mail-Snippets:

Damit Zoho Mail das Skript erkennt, das Sie in Ihre E-Mail einbetten, und damit die Domäne, von der sie gesendet wird, auf jeden Fall gültig ist, muss sie bei uns registriert werden.

Klicken Sie auf diesen Link, um sich bei uns zu registrieren, damit Zoho Mail Ihre E-Mail-Snippets erkennt. Der Domäne wird zunächst geprüft; anschließend wird die Registrierung abgeschlossen. Falls diesbezüglich noch Klärungsbedarf besteht, wird die Organisation kontaktiert, die die Registrierungsanfrage gesendet hat.

Sie können noch immer nicht finden, wonach Sie suchen?

Schreiben Sie uns an: support@zohomail.com