“Python SMTP Sendmail” Kod odpowiedzi

Python uwierzytelniania e -mail

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

Python SMTP Sendmail

#!/usr/bin/env python

import smtplib
from email.mime.text import MIMEText

sender = '[email protected]'
receivers = ['[email protected]']


port = 1025
msg = MIMEText('This is test mail')

msg['Subject'] = 'Test mail'
msg['From'] = '[email protected]'
msg['To'] = '[email protected]'

with smtplib.SMTP('localhost', port) as server:
    
    # server.login('username', 'password')
    server.sendmail(sender, receivers, msg.as_string())
    print("Successfully sent email")
Active Programmer

Odpowiedzi podobne do “Python SMTP Sendmail”

Pytania podobne do “Python SMTP Sendmail”

Więcej pokrewnych odpowiedzi na “Python SMTP Sendmail” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu