Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

python-simplemail

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-simplemail

Send Emails with Python - Simple SMTP Email Client Library

  • 2.1.0
  • PyPI
  • Socket score

Maintainers
1

############################################################################## Python-Simplemail - Send Emails with Python - Simple SMTP Email Client Library ##############################################################################

Send emails with and without attachments.

============ Installation

::

pip install python-simplemail

======= Example

.. code:: python

import simplemail
simplemail.Email(
    smtp_server = "localhost",
    smtp_user = "my_username",
    smtp_password = "my_password",
    from_address = "sender@domain.at",
    to_address = "recipient@domain.at",
    subject = u"This is the subject with umlauts (ÖÄÜß)",
    message = u"This is the short message body with umlauts (ÖÄÜß)."
).send()

Find examples in the German Python-Forum: http://www.python-forum.de/viewtopic.php?f=11&t=3158

======== Licenses

  • GNU Library or Lesser General Public License (LGPL)
  • MIT License

Keywords

FAQs


Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc