0
0

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 1 year has passed since last update.

AWS SES でコンソールからメール送信する ( AWS CLI のコマンドを実行 )

Posted at

準備

IDの作成をする
入力したメールアドレスに認証メールが届くので認証する

image

コンソールで

アクセスキーとシークレットがありリージョンを指定すればメール送信が出来る
AWSの認証方法は何でも良いがここでは環境変数で直接指定する

export AWS_ACCESS_KEY_ID="*********" && export AWS_SECRET_ACCESS_KEY=""*********"

リージョンを適宜指定してメール送信

aws ses send-email --from "example@example.com" --to "example@example.com" --subject subject --text body --region=ap-northeast-1

成功

{
    "MessageId": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}

メールの確認

Gmailで受信すると警告が表示されたが受信は出来ていた

image

送信数

image

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?