[Python] Envoyer un e-mail

Créer un script d'envoi d'e-mails

mail.py


from email.mime.text import MIMEText
import smtplib

#Informations d'identification SMTP
account = "example.com"
password = "XXXXXXXX"
 
#Destination d'envoi / réception
to_email = "[email protected]"
from_email = "[email protected]"
 
#Créer un MIME
subject = "Titre du test"
message = "Corps de test"
msg = MIMEText(message, "html")
msg["Subject"] = subject
msg["To"] = to_email
msg["From"] = from_email
 
#Processus d'envoi d'e-mails
server = smtplib.SMTP("example.com", 587)
server.starttls()
server.login(account, password)
server.send_message(msg)
server.quit()

Courir

python mail.py

Recommended Posts

[Python] Envoyer un e-mail
[Python] Envoyer un e-mail
Envoyer des e-mails par Python
Envoyer du courrier japonais avec Python3
Envoyer des e-mails avec Python (Outlook)
Bibliothèque de messagerie Python 3.6
[Python] Envoyez des e-mails avec Outlook
Envoyer des e-mails via gmail avec Python 3.4.3.
Envoyer des e-mails à plusieurs destinataires avec Python (Python3)
Envoyer un e-mail avec Amazon SES + Python
Envoyer des e-mails avec Django
Valider l'e-mail avec Python
Envoyer Gmail en Python
Envoyer un e-mail avec Excel en pièce jointe en Python
Python
Envoyer du courrier à l'aide du smtplib de Python
Envoyer en utilisant Python avec Gmail
[Python] Envoyez un e-mail depuis Gmail avec le paramètre d'authentification en deux étapes
[boto3] Envoyer un e-mail à l'aide de SES
Transmission de courrier facile avec Hâte Python3
Remarque: envoyer un e-mail avec Django
Envoyer des données multipart / form avec des requêtes python
Envoyer l'image avec python et enregistrer avec php
[Python] Créer une API pour envoyer Gmail
python kafka
Les bases de Python ⑤
Résumé Python
Python intégré
Technique Python
Étudier Python
Compte à rebours Python 2.7
Mémorandum Python
astuces python
fonction python ①
Les bases de Python
Mémo Python
ufo-> python (3)
Installer python
Python Singleton
Les bases de Python ④
Mémorandum Python 2
mémo python
Python Jinja2
Incrément Python
atCoder 173 Python
Envoyer des e-mails à une adresse e-mail spécifique avec python sans paramétrer SMTP
[Python] fonction
Installation de Python
Installer Python 3.4.3.
Envoyer un e-mail avec SES en Python et un message court avec SMS sur SNS
Essayez Python
Itératif Python
Algorithme Python
Python2 + mot2vec
[Python] Variables
Fonctions Python
Python sys.intern ()
Tutoriel Python