I've been getting the following error:
WARNING:web2py:Mail.send failure:[Errno 11004] getaddrinfo failed
for the following code:
mail = Mail()
mail.settings.server = 'smtp.gmail.com:587'
mail.settings.sender = 'email@gmail.com'
mail.settings.login = 'email@gmail.com:password'
mail.send(to=[email],subject= 'TEST',message='helloWorld')
Can someone please assist me? I can't seem to find any documentation on what getaddrinfo is and where in the code the error is happening.
Thanks!