摘要: """ 网络发送信息 """ import socket import threading def handlesend(tcpclient): """ 发送 :return: """ while True: message = input() tcpclient.send(message.enco 阅读全文
posted @ 2023-07-23 11:27 ®Geovin Du Dream Park™ 阅读(37) 评论(0) 推荐(0)
摘要: """ python 发送邮件,用授权码 """ import smtplib from email.mime.text import MIMEText def send(): """ 发送邮件 :return: """ try: stmpserver163='smtp.163.com' stmpp 阅读全文
posted @ 2023-07-23 10:16 ®Geovin Du Dream Park™ 阅读(47) 评论(0) 推荐(0)