Amazon SESを使ってPythonからメールを送信する
以下を参考にAmazon SESを使ってPythonからメールを送信する
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ses.html
関数を定義
def send_email(source, to, subject, body):
client = boto3.client('ses')
response = client.send_email(
Destination={
'ToAddresses': [
to
],
},
Message={
'Body': {
'Text': {
'Charset': 'UTF-8',
'Data': body,
},
},
'Subject': {
'Charset': 'UTF-8',
'Data': subject,
},
},
Source=source
)
return response
実際に送信する
source = '[送信元]'
to = '[送信先]'
subject = '[タイトル]'
body = '[本文]'
r = send_email(source, to, title, body)
print(r)
Author And Source
この問題について(Amazon SESを使ってPythonからメールを送信する), 我々は、より多くの情報をここで見つけました https://qiita.com/oliverSI_/items/ebe2527edf0c0cab9e23著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .