diff --git a/testenvoiemail.py b/testenvoiemail.py
new file mode 100644
index 0000000000000000000000000000000000000000..d42cb81a635b6f83acc45c60f6917239f512a40d
--- /dev/null
+++ b/testenvoiemail.py
@@ -0,0 +1,28 @@
+import smtplib
+from email.mime.text import MIMEText
+from email.mime.multipart import MIMEMultipart
+
+
+def send_mail(email, subject, body):
+    smtp_server = 'smtp.gmail.com'
+    smtp_port = 587
+    smtp_username = 'agatheccl@gmail.com'
+    smtp_password = 'wpkg amco ipcr gmbj'
+    message = MIMEMultipart()
+    message['From'] = smtp_username
+    message['To'] = email
+    message['Subject'] = subject
+
+    message.attach(MIMEText(body, 'plain'))
+    
+    with smtplib.SMTP(smtp_server, smtp_port) as server:
+        server.starttls()
+        server.login(smtp_username, smtp_password)
+
+        server.sendmail(smtp_username, to_email, message.as_string())
+
+to_email = 'agathe@colombain.com'
+subject = 'Test d\'envoi d\'e-mail'
+body = 'Bonjour, ceci est un test d\'envoi d\'e-mail depuis un script Python.'
+
+send_mail(to_email, subject, body)
\ No newline at end of file