Tkinter StringVar发送邮件错误SMTPlib

时间:2015-10-15 05:41:46

标签: python python-2.7 tkinter smtplib

我正在制作一个Tkinter应用程序来发送一封简短的电子邮件。

完整代码:

from Tkinter import *
from smtplib import *
from time import sleep
root=Tk()
root.wm_title("Gmail short message sender")

w = 500 # width for the Tk root
h = 500 # height for the Tk root

# get screen width and height
ws = root.winfo_screenwidth() # width of the screen
hs = root.winfo_screenheight() # height of the screen

# calculate x and y coordinates for the Tk root window
x = (ws/2) - (w/2)
y = (hs/2) - (h/2)

# set the dimensions of the screen
# and where it is placed
root.geometry('%dx%d+%d+%d' % (w, h, x, y))

def send():
    e1_var.get()
    e2_var.get()
    e3_var.get()
    try:
        smtpObj = SMTP('smtp.gmail.com', "587")
        smtpObj.ehlo()
        smtpObj.starttls()
        smtpObj.ehlo()
        smtpObj.login("123@gmail.com", "password")
        smtpObj.sendmail(sender1, receivers1, msg1)
        l1=Label(text="Sent").grid()
        sleep(1)
        l1.destroy()
    except SMTPException:
        l2=Label(text="Error").grid()
        raise



e1_var=StringVar()
e2_var=StringVar()
e3_var=StringVar()

sender = e1_var
receivers = [e2_var]
msg = e3_var
sender1 = '%s' % (sender)
receivers1 = '[%s]'% (receivers)
msg1 = '%s' % (msg)

e1=Entry(root, textvariable=e1_var).grid()
e2=Entry(root, textvariable=e2_var).grid()
e3=Entry(root, textvariable=e3_var).grid()
b1=Button(text="Send", command=send).grid()

root.mainloop()

问题:

问题在于我的StringVar个实例。首先,StringVar个实例正在绘制此错误。

Exception in Tkinter callback
Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py", line 1536, in __call__
    return self.func(*args)
  File "Desktop/Python Scripts/Email.py", line 32, in send
    smtpObj.sendmail(sender1, receivers1, msg1)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/smtplib.py", line 724, in sendmail
    esmtp_opts.append("size=%d" % len(msg))
AttributeError: StringVar instance has no attribute '__len__'

但我通过在

中添加此部分来解决此问题
sender1 = sender
receivers1 = receivers
msg1 = msg

smtpObj.sendmail(sender, receivers, msg)更改为smtpObj.sendmail(sender1, receivers1, msg1)。我现在收到这个错误。

Exception in Tkinter callback
Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py", line 1536, in __call__
    return self.func(*args)
  File "Desktop/Python Scripts/Email.py", line 32, in send
    smtpObj.sendmail(sender1, receivers1, msg1)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/smtplib.py", line 742, in sendmail
    raise SMTPRecipientsRefused(senderrs)
SMTPRecipientsRefused: {'[[<Tkinter.StringVar instance at 0x103e8be60>]]': (555, '5.5.2 Syntax error. yi8sm12824416pab.22 - gsmtp')}

由于引号,这是语法错误吗?如果是这样,我该如何修复第一个错误?

1 个答案:

答案 0 :(得分:0)

这个(和其他代码一样)不正确:

sender = e1_var
receivers = [e2_var]
msg = e3_var

您需要将其更改为:

sender = e1_var.get()
receivers = [e2_var.get()]
msg = e3_var.get()

但这不是你唯一的问题。此代码在用户有机会输入任何内容之前运行,因此结果将全部为空字符串。您需要等待调用.get()方法,直到您准备好使用它们(奇怪的是,您已经在send内部进行了操作。)

相关问题