https://docs.aws.amazon.com/ja_jp/ses/latest/dg/getting-started.html
https://dev.classmethod.jp/articles/amazon-ses-build-and-practice/
-- 1. コマンド等のインストール
-- 1.1 aws cli version 2 インストール
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
aws --version
-- 1.2 jqインストール
sudo yum -y install jq
-- 2. Identityの作成
aws ses verify-email-identity \
--email-address hoge@example.com
aws ses list-identities
aws ses get-identity-verification-attributes \
--identities hoge@example.com
-- 3. 動作確認
aws ses send-email \
--from hoge@example.com \
--to hoge@example.com \
--subject "subject01" \
--text "text01"
-- 4. クリーンアップ
-- identityの削除
aws ses list-identities
aws ses delete-identity \
--identity hoge@example.com