web.py 0.3 新手指南 - 发送邮件

问题

在web.py中,如何发送邮件?

解法

在web.py中使用web.sendmail()发送邮件.

web.sendmail('[email protected]', '[email protected]', 'subject', 'message')

如果在web.config中指定了邮件服务器,就会使用该服务器发送邮件,否则,就根据/usr/lib/sendmail中的设置发送邮件。

web.config.smtp_server = 'mail.mydomain.com'

如果要发送邮件给多个收件人,就给to_address赋值一个邮箱列表。

web.sendmail('[email protected]', ['[email protected]', '[email protected]'], 'subject', 'message')

ccbcc关键字参数是可选的,分别表示抄送和暗送接收人。这两个参数也可以是列表,表示抄送/暗送多人。

web.sendmail('[email protected]', '[email protected]', 'subject', 'message', cc='[email protected]', bcc='[email protected]')

headers参数是一个元组,表示附加标头信息(Addition headers)

web.sendmail('[email protected]', '[email protected]', 'subject', 'message',
        cc='[email protected]', bcc='[email protected]',
        headers=({'User-Agent': 'webpy.sendmail', 'X-Mailer': 'webpy.sendmail',})
        )

你可能感兴趣的:(python,邮件,webpy)