“SMTP Python” Respostas de código

Autenticação por e -mail Python

import smtplib

server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
server.login("your username", "your password")
server.sendmail(
  "[email protected]", 
  "[email protected]", 
  "this message is from python")
server.quit()
Awful Addax

SMTP Python

# Does not work with gmail, for that use SMTP_SSL
from smtplib import SMTP
with SMTP("domain.org") as smtp:
     smtp.noop()
Active Programmer

Respostas semelhantes a “SMTP Python”

Procure respostas de código populares por idioma

Procurar outros idiomas de código