Last active
January 20, 2017 11:53
-
-
Save vergissberlin/62f9ebac5729463491c7c56a55fa3b1d to your computer and use it in GitHub Desktop.
Semantic Email
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "EventReservation", | |
"reservationNumber": "IO12345", | |
"underName": "John Smith", | |
"reservationFor": { | |
"@type": "Event", | |
"name": "Google I/O 2013", | |
"startDate": "2013-05-15T08:30:00-08:00", | |
"location": "Moscone Center, 800 Howard St., San Francisco, CA 94103" | |
} | |
} | |
</script> | |
<p> | |
Dear John, thanks for booking your Google I/O ticket with us. | |
</p> | |
<p> | |
BOOKING DETAILS<br/> | |
Reservation number: IO12345<br/> | |
Order for: John Smith<br/> | |
Event: Google I/O 2013<br/> | |
Start time: May 15th 2013 8:00am PST<br/> | |
Venue: Moscone Center, 800 Howard St., San Francisco, CA 94103<br/> | |
</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment