如何从 AMP for Email Playground 发送测试邮件?

How to send test Email from AMP for Email Playground?

我正在尝试从 AMP 发送测试电子邮件,用于可访问的 Email Playground here.。但是,我的收件箱中没有收到任何电子邮件。文档说我需要将 "amp@gmail.dev" 电子邮件 ID 列入白名单。我该怎么做呢?还有我如何从我自己的电子邮件 ID 发送测试电子邮件?

这是正在发送的 AMP 电子邮件。邮箱有问题吗?

<!doctype html>
<html ⚡️4email>
<head>
  <meta charset="utf-8">
  <script async src="https://cdn.ampproject.org/v0.js"></script>
  <style amp4email-boilerplate>body{visibility:hidden}</style>
</head>
<body>
  Hello, AMP4EMAIL to test.
</body>
</html>

AMP 电子邮件只允许来自被 Google 列入白名单或出于测试目的由您自己列入白名单的电子邮件。这是在您的电子邮件设置中完成的。 amp@gmail.devAMP for Email Playground 向您发送电子邮件的电子邮件。您也可以从您的电子邮件设置中将其列入白名单。


白名单步骤 'amp@gmail.dev':


1.转到收件箱右上角的收件箱中的设置。


2。单击动态电子邮件标题下的 'Developer Settings' link。


3。启用复选框始终允许来自 amp@gmail.dev:

的电子邮件

4.尝试在 playground 中点击带有一些 amp 电子邮件的发送按钮。


从自定义电子邮件 ID 发送电子邮件以进行测试的步骤:

Note: Remember to send AMP email to any other email ID you need to get your email whitelisted by Google. https://developers.google.com/gmail/ampemail/register The step below is for sending email from an email that is not whitelisted by Google.

  1. 在您将 amp@gmail.dev 列入白名单的收件箱设置中,在输入中添加您要用于发送电子邮件的电子邮件 ID。

  2. 电子邮件必须是 SPF、DKIM 和 DMARC-authenticated。你看是什么here.

  3. 发送 AMP 电子邮件的最简单方法之一是使用 AWS SES。一旦 AWS SES 是 SPF、DKIM 和 DMARC-authenticated,您就可以使用它的 SMTP 接口轻松地从任何编程语言轻松发送电子邮件。阅读更多 here & here