Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

SMTP Python

# Does not work with gmail, for that use SMTP_SSL
from smtplib import SMTP
with SMTP("domain.org") as smtp:
     smtp.noop()
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #SMTP #Python
ADD COMMENT
Topic
Name
3+8 =