Skip to content

Instantly share code, notes, and snippets.

View BenjaminHoegh's full-sized avatar

Benjamin Høegh BenjaminHoegh

  • Denmark
View GitHub Profile
@BenjaminHoegh
BenjaminHoegh / email_sender.py
Last active August 8, 2025 07:31 — forked from ninapavlich/email_sender.py
Convert HTML emails with python
from bs4 import BeautifulSoup
import os
import re
import requests
import urlparse
import smtplib
from smtplib import SMTP
from smtplib import SMTP_SSL
from smtplib import SMTPAuthenticationError