mailgun を使用して、matplotlib 棒グラフを電子メールの添付ファイルとして送信しようとしています。
棒グラフは正常に作成されていますが、保存して BytesIO オブジェクトとして電子メールで送信しようとすると不十分です。
次のコードを試しました:
def send_simple_message(buf):
mgurl = 'https://api.mailgun.net/v3/{}/messages'.format('sandboxf04fcce3c4dc46c987c92f3a967e7f9c.mailgun.org')
auth = ('api', '3701ba6d2b1ad202e76a4322a80c7600-87cdd773-683e02b1')
files=[("attachment", ("test.jpg", buf))]
data = {
'from': 'Mailgun User <mailgun@{}>'.format('sandboxf04fcce3c4dc46c345c92f3a123e7f7c.mailgun.org'),
'to': 'user@gmail.com',
'subject': 'Simple Mailgun Example',
'text': 'hello'
}
response = requests.post(mgurl, auth=auth, data=data, files=files)
response.raise_for_status()
buf = BytesIO()
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.bar(x,y, width, color='lightblue', ec='grey')
fig.savefig(buf, format='png')
buf.seek(0)
send_simple_message(buf)
ただし、次のエラーが発生します。
AttributeError: 'NoneType' object has no attribute 'read'
よろしくお願いします