Gmail Email Markup not working with Amazon SES -


i'm trying send e-mail event markup guests i'm having no success. i'm using amazon ses send e-mail neither gmail nor inbox showing invite. believe setup amazon ses right dkim-signature , link personal gmail ses.

the full e-mail received below

delivered-to: xxxx@gmail.com received: 10.107.136.164 smtp id s36csp123199ioi;     wed, 27 jan 2016 14:05:16 -0800 (pst) x-received: 10.55.75.85 smtp id y82mr38139956qka.29.1453932315743;     wed, 27 jan 2016 14:05:15 -0800 (pst) return-path: <00000152851e818e-5dd6f0af-7707-4e18-b278-f918cd14773c-000000@amazonses.com> received: a8-88.smtp-out.amazonses.com (a8-88.smtp-out.amazonses.com. [54.240.8.88])     mx.google.com esmtps id t4si8059067qht.13.2016.01.27.14.05.15     <xxxx@gmail.com>     (version=tls1 cipher=ecdhe-rsa-aes128-sha bits=128/128);     wed, 27 jan 2016 14:05:15 -0800 (pst) received-spf: pass (google.com: domain of 00000152851e818e-5dd6f0af-7707-4e18-b278-f918cd14773c-000000@amazonses.com designates 54.240.8.88 permitted sender) client-ip=54.240.8.88; authentication-results: mx.google.com;    spf=pass (google.com: domain of 00000152851e818e-5dd6f0af-7707-4e18-b278-f918cd14773c-000000@amazonses.com designates 54.240.8.88 permitted sender) smtp.mailfrom=00000152851e818e-5dd6f0af-7707-4e18-b278-f918cd14773c-000000@amazonses.com;    dkim=pass header.i=@amazonses.com;    dmarc=fail (p=none dis=none) header.from=gmail.com dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=ug7nbtf4gccmlpwj322ax3p6ow6yfsug; d=amazonses.com; t=1453932315; h=from:reply-to:to:subject:mime-version:content-type:message-id:date:feedback-id; bh=tcg1kqljp4+u0x7gdv2qjlipsg+mgyfwiedio8nh/7u=; b=xav/g3o/qlg0qrrxctppcy7yvb/ooizgl3bnlm1lsizltsmykmywlfgtnvuwmtuh znjjyi6mz6gk5d5jlks3kx25owyjl/wcq4qrybplvtjtvvuvykcfw9mbw7rwbcefiql pyhrly214vmxhsi1uvqutwkvjfrast1rdaolenq8= from: =?utf-8?b?rxnkcmfzigugtglhia==?= <xxxx@gmail.com> reply-to: xxxx@gmail.com to: xxxx@gmail.com subject: subject mime-version: 1.0 content-type: multipart/alternative;  boundary="----=_part_24077334_1650467526.1453932315024"  message-id: <00000152851e818e-5dd6f0af-7707-4e18-b278-f918cd14773c-000000@email.amazonses.com> date: wed, 27 jan 2016 22:05:15 +0000 x-ses-outgoing: 2016.01.27-54.240.8.88 feedback-id: 1.us-east-1.ltlhfwkgzbbzqf+j9gux7yokqsymo3nzrj+0iqqahio=:amazonses  ------=_part_24077334_1650467526.1453932315024 content-type: text/plain; charset=utf-8 content-transfer-encoding: quoted-printable   {   "@context" : "http://schema.org",   "@type" : "eventreservation",   "reservationnumber" : "1",   "reservationstatus": "http://schema.org/confirmed",   "reservationfor" : {     "@type" : "event",     "name" : "title",     "startdate" : "2016-04-16t15:00",     "location" : {       "@type" : "place",       "name" : "name",       "address" : {         "@type" : "postaladdress",         "streetaddress" : "address",         "addresslocality" : "city",         "addressregion" : "region",         "addresscountry" : "country",         "postalcode" : "13030320"       }     }   },   "undername" : {     "@type" : "person",     "name" : "name"   } }     email-message  ------=_part_24077334_1650467526.1453932315024 content-type: text/html; charset=utf-8 content-transfer-encoding: quoted-printable  <script type=3d"application/ld+json"> {   "@context" : "http://schema.org",   "@type" : "eventreservation",   "reservationnumber" : "1",   "reservationstatus": "http://schema.org/confirmed",   "reservationfor" : {     "@type" : "event",     "name" : "title",     "startdate" : "2016-04-16t15:00",     "location" : {       "@type" : "place",       "name" : "name",       "address" : {         "@type" : "postaladdress",         "streetaddress" : "address",         "addresslocality" : "city",         "addressregion" : "region",         "addresscountry" : "country",         "postalcode" : "13030320"       }     }   },   "undername" : {     "@type" : "person",     "name" : "name"   } } </script> <br/>email-message ------=_part_24077334_1650467526.1453932315024-- 

your email encoding is

content-transfer-encoding: quoted-printable 

thus '=' signs become '=3d'.

in case:

<script type=3d"application/ld+json"> 

which seems not play gmail email markup.

try use this test tool , try , without 3d

you see w/out 3d work , 3d not


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -