是否可以使用 AMP-HTML 邮件格式与服务器通信?我不认为它记录得那么好。有一些关于普通 AMP-HTML 的信息,但关于电子邮件的信息不多。
这是我要发送的 amp 邮件。我想从我的服务器中获取秘密词而不是硬编码。
<!doctype html>
<html ⚡4email>
<head>
<meta charset="utf-8">
<script async src="https://cdn.ampproject.org/v0.js"></script>
<script async custom-element="amp-bind" src="https://cdn.ampproject.org/v0/amp-bind-0.1.js"></script>
<style amp4email-boilerplate>body{visibility:hidden}</style>
</head>
<body>
<!-- Store complex nested JSON data in <amp-state> elements. -->
<amp-state id="words">
<script type="application/json">
{
"SecretWord": "fetched"
}
</script>
</amp-state>
<p [text]="'Your word is: ' + currentWord + '.'">Click to show magic word</p>
<button on="tap:AMP.setState({currentWord: words['SecretWord']})">Show word</button>
</body>
</html>