Gmail's quick action buttons implementation -
how can implement quick action buttons gmail on email templates? goal focused on users have gmail account. saw news quick action buttons gmail , want know how implement newsletters/emails on gmail have quick action buttons appearing. increase conversion of users acting upon email delivery.
i found solution here: http://googleappsdeveloper.blogspot.com.br/2013/05/introducing-actions-in-inbox-powered-by.html . seems needs json-ld markup added email templates :
<script type="application/ld+json"> { "@context": "schema.org", "@type": "movie", "name": "the internship", ... information movie ... "action": { "@type": "confirmaction", "name": "add queue", "actionhandler": { "@type": "httpactionhandler", "url": "https://my-movies.com/add?movieid=123", "method": "post", } } } </script>
Comments
Post a Comment