16
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Cognito User Poolsでemail verification messageのメール送信を日本語で行う方法

Last updated at Posted at 2016-08-16

概要

スクリーンショット 2016-08-16 22.21.48.png User Poolsではユーザに送信するアクティベーションメールの文面をカスタマイズすることが出来ます。 しかし、マネジメントコンソールで日本語の文章を入力するとキャプチャの用にJavaScriptエラーが発生して登録が出来ないバグが有ります。

解決策

aws-cliを使って登録すれば解決します。
コマンドは以下のとおり

$ aws cognito-idp update-user-pool --user-pool-id us-east-1_hq5vcdssx --email-verification-subject 'お申し込みありがとうございました' --email-verification-message "
これはアクティベーションメールです。
あなたの認証コードは{####}です。

アクティベーションページから認証コードを入力してください
http://example.com/#activation

また、パスワード忘れの方は以下のページからパスワードを再発行してください
http://example.com/#activation" --auto-verified-attributes email
16
11
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?