Tobias Weise fc96b462a3
All checks were successful
Gitea Docker Redeploy / Redploy-App-on-self-via-SSH (push) Successful in 9m5s
trying to install amd support
2024-09-02 16:35:15 +02:00

15 lines
354 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()