Sending email with python email not sent/received -


setting email new domain, been able link support@... gmail can send/receive emails it, tested send , works nicely.

for python

in [13]: server = smtplib.smtp('mail.kazilynk.com', 587)  in [14]: server.login("no-reply@kazilynk.com", "---------") out[14]: (235, 'authentication succeeded')  in [15]: server.sendmail("no-reply@kazilynk.com", "muiruri.samuel@gmail.com", "test") out[15]: {} 

it connects, "sends" no email ever received nor raise error. i've send multiple different test none have been received. debugging appreciated.


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -