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)