Email address of the recipients

0

I would like to know how it is possible to have a list with the email address of the recipients, whilst using Amazon SES API in our App (for example when a user registers in the APP and Amazon sends her/him an email). Thanks

jose
質問済み 1年前253ビュー
2回答
0

Using Python Boto3 SDK, make use of send_email() or send_raw_email() API calls and pass the mail as list of email addresses. Below is a code snippet for reference: response = client.send_raw_email( Source=SENDER, Destinations=RECIPIENT, RawMessage={ 'Data':msg.as_string(), }, ) Reference link: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ses.html

profile picture
回答済み 1年前
0

1000 Thanks

jose
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ