标签: python
代码如下:
print "type END to send the message" while(True): message = raw_input("> Message : ") if message != 'END': msg.attach(MIMEText(message, 'plain')) else: break
它不会在gmail消息中添加新行...那么,为smtplib python创建新行的代码是什么?