本文整理汇总了Python中smtplib.SMTP.select方法的典型用法代码示例。如果您正苦于以下问题:Python SMTP.select方法的具体用法?Python SMTP.select怎么用?Python SMTP.select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类smtplib.SMTP
的用法示例。
在下文中一共展示了SMTP.select方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: POP3_SSL
# 需要导入模块: from smtplib import SMTP [as 别名]
# 或者: from smtplib.SMTP import select [as 别名]
print '*** Doing POP recv...'
s = POP3_SSL('pop.gmail.com', 995)
s.user(MAILBOX)
s.pass_(PASSWD)
rv, msg, sz = s.retr(s.stat()[0])
s.quit()
line = getSubject(msg)
print ' Received msg via POP: %r' % line
msg = msg.replace('587/TLS', '465/SSL')
# SMTP/SSL
if SMTP_SSL:
print '*** Doing SMTP send via SSL...'
s = SMTP_SSL('smtp.gmail.com', 465)
s.login(MAILBOX, PASSWD)
s.sendmail(from_, to, msg)
s.quit()
print ' SSL mail sent!'
# IMAP
print '*** Doing IMAP recv...'
s = IMAP4_SSL('imap.gmail.com', 993)
s.login(MAILBOX, PASSWD)
rsp, msgs = s.select('INBOX', True)
rsp, data = s.fetch(msgs[0], '(RFC822)')
line = getSubject(StringIO(data[0][1]))
s.close()
s.logout()
print ' Received msg via IMAP: %r' % line