0

我想知道如何实现与 PayPal 相同的电子邮件结构。

它看起来像这样(在 Google 的收件箱中):

电子邮件,显示 PayPal 徽标,并阅读“Coursera, Inc. 收据”、列表金额、发行人、日期和确认号

但我在这里找不到合适的类型:https ://developers.google.com/gmail/markup/reference/

知道如何实现类似 PayPal 的标记吗?

4

1 回答 1

0

使用 schema.org/Invoice 和 schema.org/PayAction,我能够获得您从 PayPal 发布的电子邮件结构。它还生成了一个“查看账单”按钮,该按钮仅显示在收件箱中,而不显示在 Gmail 中。在下面查看我的示例脚本。电子邮件标记测试员似乎喜欢它,没有发现错误。尝试使用此Gmail Schema Tester或使用您的 Gmail 帐户通过Apps 脚本发送它。

 <script type="application/ld+json">
[
{
    "@context": "http://schema.org",
    "@type": "Invoice",
    "description": "January 2015 Acme Bill",
    "url": "https://www.americanexpress.com",
    "accountId": "xxxx-xxxx-xxxx-1234",
    "potentialaction": {
      "url": "https://example.com",
      "@type": "PayAction"
    },
    "paymentDue": "2020-01-30",
    "minimumPaymentDue": {
      "@type": "PriceSpecification",
      "price": "$15.00"
    },
    "totalPaymentDue": {
      "@type": "PriceSpecification",
      "price": "$200.00"
    },
    "paymentStatus": "payment due",
    "provider": {
      "@type": "Organization",
      "name": "Acme Bank"
 }
}
]
    </script>

你应该得到这个:

在此处输入图像描述

于 2015-09-18T16:58:44.303 回答