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
Created March 14, 2022 18:12 — 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