我进行了google和stackoverflow搜索,但未找到相关结果。有谁知道你是否可以在mailchimp模板中使用谷歌的Gmail操作API?这可能吗?
谢谢!
答案 0 :(得分:2)
您可以在此处找到有关如何使用此功能的信息:https://developers.google.com/gmail/actions/
Mailchimp已开始自动将此功能纳入Subscription确认电子邮件中。你没有必要做任何事情。
如果您想将动作按钮添加到其他类型的电子邮件,您可以按照Google上列出的步骤操作(上面的链接)。您必须向Google发送标有结构化数据的示例电子邮件,然后register your sending account with them。
注册后,您可以使用Schema.org样式微数据标记和JSON向电子邮件添加操作按钮。
Go-To动作很容易申报。一旦你标记了你的内容 使用schema.org实体,您可以为它们添加转发操作。对于 例如,要使一个Event实体有一个RsvpAction Go-To链接,你 只需要填充事件的action属性,如下所示 例如:
在您的电子邮件中添加:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"name": "John's Birthday Party",
... information about the event ...
"action": {
"@type": "RsvpAction",
"url": "http://events-organizer.com/rsvp?eventId=123",
}
}
</script>
这是你要添加到标记
的一个例子<div itemscope itemtype="http://schema.org/Event">
<meta itemprop="name" content="John's Birthday Party"/>
... information about the event ...
<div itemprop="action" itemscope itemtype="http://schema.org/RsvpAction">
<meta itemprop="url" content="https://events-organizer.com/rsvp?eventId=123"/>
</div>
</div>
请注意,Gmail按钮为not designed to be used in bulk marketing emails。这些按钮的目的以及Google支持的架构仅用于在交易式电子邮件中实现。
答案 1 :(得分:0)
这是查找和提出有关mailchimp
的问题的好地方https://groups.google.com/forum/#!forum/mailchimp-api-discuss