我试着写一个没有邮件应用程序发送电子邮件的AppleScript。 我google了很多,发现了两个链接。
第一个链接: http://www.hamsoftengineering.com/codeSharing/pythonEmail/pythonEmail.html
当我在我的代码中实现它并运行它时,我总是会收到此错误:
error "Traceback (most recent call last):
File \"/Users/Kian/Desktop/pythonEmail.py\", line 58, in <module>
server.login(username, passwd)
File \"/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/smtplib.py\", line 622, in login
raise SMTPAuthenticationError(code, resp)
smtplib.SMTPAuthenticationError: (535, 'Authentication credentials invalid')" number 1
第二个链接: Use Applescript to send mail without mail.app
当我在我的代码中实现它时,我总是从编译器中得到followig错误:
Syntax Error
The run handler is specified more than once, or there were top-level commands in addition to the run handler.
我该怎么办? 有人知道问题在哪里吗? 我是Apple的新手,并不理解错误消息,也无法找到问题所在。 有可能找到问题并纠正它吗? 或者有人有一个代码wokrks?
由于