python-simplemail icon indicating copy to clipboard operation
python-simplemail copied to clipboard

Send Emails with Python2 - Simple SMTP Email Client Library

############################################################################### Python-Simplemail - Send Emails with Python2 - 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 = "[email protected]",
    to_address = "[email protected]",
    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