AMP
  • email

Article Bookmark Email

Introduction

This sample demonstrates how to let users perform an asynchronous action (bookmarking an article) in an AMP email.

It leverages the amp-form extension to send a request to the server without the user leaving their e-mail client.

Setup

Additionally used AMP components must be imported in the header. We use amp-form to submit bookmark requests to the server.

<script async custom-element="amp-form" src="https://cdn.ampproject.org/v0/amp-form-0.1.js"></script>

We use amp-mustache to render the result of a form submission.

<script async custom-template="amp-mustache" src="https://cdn.ampproject.org/v0/amp-mustache-0.2.js"></script>

Body

We display a simple summary of the article in the email.

Sample article

This is a short summary of a sample article. The user can choose to continue reading on the website or bookmark it to their account for later.

<h1>Sample article</h1>
<p>This is a short summary of a sample article. The user can choose to continue reading on the website or bookmark it to their account for later.</p>

We show a "bookmark" button under the article, which sends a bookmark request to the server asynchronously via amp-form.

Because there is no authentication for outgoing XHR calls from AMP email messages, all authentication should be done using access tokens. In this example, this token is represented with 123abc. In a real-life scenario, this hidden input field auth_token would contain a real server-side validated limited-use access token.

An error occurred.
<form action-xhr="https://amp.dev/documentation/examples/interactivity-dynamic-content/article_bookmark_email/submit-form-bookmark" method="post">
  <input type="hidden"
          name="id"
          value="ARTICLE_UNIQUE_ID">
  <input type="hidden"
          name="auth_token"
          value="123abc">
  <button type="submit">
    Bookmark
  </button>
  <div submit-success>
    <template type="amp-mustache">
      {{result}}
    </template>
  </div>
  <div submit-error>An error occurred.</div>
</form>
자세한 설명이 필요하신가요?

이 페이지의 설명만으로 궁금한 점이 모두 해결되지 않는다면 다른 AMP 사용자에게 문의하여 구체적인 활용 사례를 논의해 보세요.

Stack Overflow로 이동
설명이 부족한 기능을 발견하셨나요?

AMP 프로젝트는 여러분의 참여와 기여를 적극 환영합니다! 오픈 소스 커뮤니티를 통해 지속적으로 활동해 주셔도 좋지만 관심 있는 주제에 한 번만 기여하셔도 큰 도움이 됩니다.

GitHub에서 샘플 수정하기