首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

amazon simple email service (ses) 运用小记(python)

2012-08-30 
amazon simple email service (ses) 使用小记(python)1 需要帐号的 access key2 我采用了python的库 https

amazon simple email service (ses) 使用小记(python)
1 需要帐号的 access key
2 我采用了python的库 https://github.com/pankratiev/python-amazon-ses-api

具体代码如下
第一步
verify你的发出邮件:

from amazon_ses import AmazonSES, EmailMessageAccessKeyID = ...你的AccessKeyIDSecretAccessKey = ...你的SecretAccessKeyamazonSes = AmazonSES(AccessKeyID, SecretAccessKey)message = EmailMessage()message.subject = 'hello world'message.bodyHtml = 'hello world from ses'r = amazonSes.sendEmail( 发信人,  收件人, message)


热点排行