
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Simple SMTP wrapper for Python's SMTP, supports both HTML and text based emails. Now supports attachments!
Install simpleemail
pip install simpleemail
Then use it in a project:
from simpleemail import create_email_message, send_email
To send an email you have to first create an email message to send. Note you can use any combination of plain text or HTML when creating a message.
message = create_email_message('Hello','email@address.com','foo@bar.it','World!','<html><head></head><body><h1>World!</h1></body></html>')
send_email(message,'smtp.server.com', False)
You can also provide parameters to be replaced when the message is created.::
params = {'name': 'Rick James'}
message = create_email_message('Hello',
'email@address.com',
'anyone@foobar.com',
'[name]!',
'<html><head></head><body><h1>[name]!</h1></body></html>',
params)
This will substitute the value of Rick James in for the name.
You can also send a single attachment or multiple attachments by choosing::
message = create_email_message('Hello',
'email@address.com',
'anyone@foobar.com',
'Test body',
'<html><head></head><body><h1>Test body</h1></body></html>',
[],
"file.txt",
['file1.txt','file2.pdf'])
FAQs
Simple SMTP wrapper for Python's SMTP, supports both HTML and text based emails. Now supports attachments!
We found that simpleemail demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.