Code:
from smtplib import *
outbox = SMTP('mail.pcwv.com')
MyAddr = "jay@pcwv.com"
Target = "jay@pcwv.com"
outbox.sendmail(MyAddr,Target,"Hi There")
Everytime i try to execute that, I get a "Connection unexpectedy closed". Just to verify, I have also copy and pasted many other senders off internet with no luck.
Anyone see the issue here? Can it be anything other than the mail server not allowing me to do this?