Mail per Python senden

Basic

# coding: UTF-8

import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email import charset
from email.Utils import formatdate

#Header-Zusatz
def create_message(from_addr,to_addr,subject,body):
    message = MIMEText(body)
    message['Subject'] = subject
    message['From'] = from_addr
    message['To'] = to_addr
    message['Date'] = formatdate()
    return message

#E-Mail senden
def send(from_addr,to_addr, msg):
    s = smtplib.SMTP('localhost:25')    s.sendmail(from_addr, [to_addr], msg.as_string())
    s.close()

Recommended Posts

Mail per Python senden
Senden Sie japanische Post mit Python3
[Python] Mail senden
[Python] Mail senden
[Automatisierung] Senden Sie Outlook-E-Mails mit Python
[Python] Mail mit Outlook senden
Senden Sie E-Mails über Google Mail mit Python 3.4.3.
Mail mit Django senden
Überprüfen Sie die E-Mail mit Python
HTML-Mail mit Bild zum Senden mit Python
Senden Sie eine E-Mail mit Amazon SES + Python
Senden Sie eine E-Mail mit Python an Spushis Adresse
Senden Sie eine E-Mail mit Excel in Python
Senden Sie mit Python mit Google Mail
Hinweis: Senden Sie eine E-Mail mit Django
Senden Sie mehrteilige / Formulardaten mit Python-Anforderungen
Sende Bild mit Python und speichere mit PHP
Python 3.6 E-Mail-Bibliothek
FizzBuzz in Python3
Scraping mit Python
Statistik mit Python
[Python] Senden Sie eine E-Mail aus Google Mail mit einer zweistufigen Authentifizierungseinstellung
Scraping mit Python
Python mit Go
Twilio mit Python
In Python integrieren
Spielen Sie mit 2016-Python
AES256 mit Python
Getestet mit Python
Python beginnt mit ()
mit Syntax (Python)
Bingo mit Python
Zundokokiyoshi mit Python
Excel mit Python
Mikrocomputer mit Python
Mit Python besetzen
Senden Sie mit Python (Python3) E-Mails an mehrere Empfänger.
Serielle Kommunikation mit Python
Zip, entpacken mit Python
Django 1.11 wurde mit Python3.6 gestartet
Primzahlbeurteilung mit Python
Socket-Kommunikation mit Python
Datenanalyse mit Python 2
Versuchen Sie es mit Python.
Senden Sie eine Nachricht mit Python an LINE (LINE Notify)
Python lernen mit ChemTHEATER 03
Sequentielle Suche mit Python
"Objektorientiert" mit Python gelernt
Führen Sie Python mit VBA aus
Umgang mit Yaml mit Python
Löse AtCoder 167 mit Python
Serielle Kommunikation mit Python
[Python] Verwenden Sie JSON mit Python
Python lernen mit ChemTHEATER 05-1
Führen Sie prepDE.py mit python3 aus
1.1 Erste Schritte mit Python
Tweets mit Python sammeln
Binarisierung mit OpenCV / Python
Kernel-Methode mit Python
Was tun, wenn Sie mit Python keine E-Mail an Yahoo senden konnten?