python-smtp-mail-sending-tester icon indicating copy to clipboard operation
python-smtp-mail-sending-tester copied to clipboard

A simple Python command-line app for sending test messages using a range of parameters (port, SSL, TLS, auth, etc.)

Results 9 python-smtp-mail-sending-tester issues
Sort by recently updated
recently updated
newest added

Without a "valid" Message-ID, gmail bounces the test messages. This fix adds minimal (and not globally unique) Message-ID to the email header.

There was an error when we use -s or -usessl I have passed server address while initializing `smtplib.SMTP_SSL('youserver.com')`

https://bugs.python.org/issue36094

#oneline code for integratimg gmail in python code

A python3.7 bug, pass the hostname to smtplib.SMTP for fixing it. https://github.com/ansible/ansible/pull/44552 Full Stacktrace: `ling.com [email protected] smtp.office365.com connect: ('smtp.office365.com', 587) connect: to ('smtp.office365.com', 587) None reply: b'220 LO2P123CA0016.outlook.office365.com Microsoft ESMTP...

Make the script compatible with python3.

Hi, I needed to test multiple stmp relayers to see who dropped my emails, so I added the details of the call to the contents of the email sent for...

With option --usessl we were sending EHLO twice. The second EHLO confused my server (smtp.mail.com) which immediately disconnected. It is only with --usetls that we need a second EHLO after...

connect: ('192.168.1.119', 25) connect: ('192.168.1.119', 25) Traceback (most recent call last): File "smtptest.py", line 84, in server.connect(serveraddr, options.serverport) File "C:\Python27\lib\smtplib.py", line 316, in connect self.sock = self._get_socket(host, port, self.timeout) File...