Tobias Weise 2d227d438c
All checks were successful
Gitea Docker Redeploy / Redploy-App-on-self-via-SSH (push) Successful in 1m40s
more overhaul
2024-08-27 22:39:29 +02:00

16 lines
355 B
Python

from smtplib import *
from email.mime.text import MIMEText
def send_mail(target_mail, subject, sender_mail, msg):
msg = MIMEText(msg)
msg['Subject'] = subject
msg['From'] = sender_mail
msg['To'] = target_mail
smtp = SMTP('mailserver', port=10025)
smtp.sendmail("Creative Bots", [target_mail], msg.as_string())
smtp.quit()