Turns out there were a couple other things to change as well. Apparently smtplib doesn't like unicode. I took the opportunity to expand the email settings to support alternative ports and TLS as well. It should show up in the dev branch in a day or two and get merged into master after we get a few other changes made.
I believe the issue you're seeing can likely be fixed by replacing the login line with:
- Code: Select all
s.login(str(self.username), str(self.password))
or just leaving your hardcoded one in there for now.
If you're feeling adventurous you can switch the branch to dev and get the bleeding edge stuff as soon as we push it up.
Thanks,
Scott