I tried to run this piece of code that yielded an error:
#!/usr/bin/python
import smtplib
msg = 'Hello world.'
server = smtplib.SMTP('smtp.gmail.com',587) #port 465 or 587
server.ehlo()
server.starttls()
server.ehlo()
server.login('me@gmail.com','pass')
server.sendmail('me@gmail.com','someoneelse@gmail.com',msg)
server.close()
This is the error:
Traceback (most recent call last):
File "sendmail2.py", line 2, in <module>
import smtplib
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/smtplib.py", line 163, in <module>
import ssl
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ssl.py", line 58, in <module>
import textwrap
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/textwrap.py", line 32, in <module>
class TextWrapper:
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/textwrap.py", line 74, in TextWrapper
whitespace_trans = string.maketrans(_whitespace, ' ' * len(_whitespace))
AttributeError: 'module' object has no attribute 'maketrans
I wonder what the problem is? It seems to me that the import if smtplib is broken but why?
string.py[c]in the current directory? – Avaris May 10 '12 at 2:05string.py(and.pycalso). It is shadowing the built-instringmodule. – Avaris May 10 '12 at 2:35