Socket
Socket
Sign inDemoInstall

simpleemail

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    simpleemail

Simple SMTP wrapper for Python's SMTP, supports both HTML and text based emails. Now supports attachments!


Maintainers
1

Readme

SimpleEmail

Simple SMTP wrapper for Python with basic HTML and text support based on MIME types.

Quickstart

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


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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc