You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"smtp://localhost:25" is a valid, as of urllib3.util.parse_url and parsed_url.auth is None, so .split(':'), wont work.
I was stuck on this issue for a long time until I discovered this in the documentation. It seems you need to use something like smtp://username:[email protected]:25.
"smtp://localhost:25" is a valid, as of
urllib3.util.parse_url
andparsed_url.auth
isNone
, so.split(':')
, wont work.The text was updated successfully, but these errors were encountered: