This commit is contained in:
Edward Betts 2023-09-29 07:13:13 +01:00
parent 52dfe9e42c
commit 9a8f3c1ee4

View file

@ -39,7 +39,7 @@ conferences = [
("FOSS4G Europe", "https://2024.europe.foss4g.org/"),
("FOSSY", "https://2024.fossy.us/"),
# ("North Bay Python", "https://2024.northbaypython.org/"),
("DebConf", "https://wiki.debian.org/DebConf/24"),
# ("DebConf", "https://wiki.debian.org/DebConf/24"),
("State of the Map US", "https://2024.stateofthemap.us/"),
("WikiConference North America", "https://wikiconference.org/wiki/2024/Main_Page"),
("PyCon DE", "https://2024.pycon.de/"),
@ -80,7 +80,6 @@ def send_mail(subject: str, body: str) -> None:
msg["From"] = f"Edward Betts <{mail_from}>"
msg["Date"] = formatdate()
msg["Message-ID"] = make_msgid()
# msg["X-4angle"] = "conference"
s = smtplib.SMTP(SMTP_HOST)
s.sendmail(mail_from, [MAIL_TO_ADDRESS], msg.as_string())