{ "info": { "author": "Anderson R. Livramento", "author_email": "andi.devel@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "SimpleSMTP\n==========\n\nA very simple class to send e-mails using the Python SMTP standard lib.\n\nUsage\n-----\n\n.. code:: python\n\n from simplesmtp import SimpleSMTP\n\n mail = SimpleSMTP(\n host='mail.host',\n username='user@mail.host',\n passw='password',\n from_email='You '\n )\n mail.send(to_email='email@example.com', subject='Hello', email_message='World')\n\n # Changing default from_email\n\n mail.send(\n from_email='Another From ',\n to_email='email@example.com',\n subject='Hello',\n email_message='World'\n )\n\n # Sending to more than one recipient\n\n mail.send(\n to_email='email1@example.com, email2@example.com',\n subject='Hello',\n email_message='World'\n )\n\n # Attachments\n\n mail.send(\n to_email='email1@example.com, email2@example.com',\n subject='Hello',\n email_message='World',\n attachments=[\n {\n 'file': '/path/to/real/file',\n 'filename': 'the name that you want'\n }\n ]\n )\n\n**Using SSL**\n\n.. code:: python\n\n from simplesmtp import SimpleSMTP\n\n mail = SimpleSMTP(\n host='mail.host',\n username='user@mail.host',\n passw='password',\n from_email='You ',\n port=465,\n use_ssl=True\n )\n mail.send(to_email='email@example.com', subject='Hello', email_message='World')\n\n**HTML messages**\n\n.. code:: python\n\n from simplesmtp import SimpleSMTP\n\n mail = SimpleSMTP(\n host='mail.host',\n username='user@mail.host',\n passw='password',\n from_email='You '\n )\n mail.send(\n to_email='email@example.com',\n subject='Hello',\n email_message=' HTML source with optional embedded images ... ',\n msg_type='html'\n )\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/andidevel/simplesmtp", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "simplesmtp", "package_url": "https://pypi.org/project/simplesmtp/", "platform": "", "project_url": "https://pypi.org/project/simplesmtp/", "project_urls": { "Homepage": "https://github.com/andidevel/simplesmtp" }, "release_url": "https://pypi.org/project/simplesmtp/0.0.3/", "requires_dist": [ "pytest ; extra == 'testing'" ], "requires_python": "", "summary": "A very simple class to send e-mails using the SMTP Python Lib", "version": "0.0.3" }, "last_serial": 5344750, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "d96bbe00743cb66a767c5c14eb6bf3f5", "sha256": "b8eb59e01cffb569621a9ea98958b6812af5f5f3b8b6cfd4337d5f634c9948cf" }, "downloads": -1, "filename": "simplesmtp-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d96bbe00743cb66a767c5c14eb6bf3f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9756, "upload_time": "2019-02-07T00:30:52", "url": "https://files.pythonhosted.org/packages/df/84/acf73b66eaece2db1e2abca1c6b9d200c1a6ed229b6c18343996f5779e04/simplesmtp-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "673c676e0f67fccfb4a6c1c853b4d9ea", "sha256": "90ce7e887d9b17cbf2b95f096904026117876f526da6de81e8c4cd89c0b3783a" }, "downloads": -1, "filename": "simplesmtp-0.0.1.tar.gz", "has_sig": false, "md5_digest": "673c676e0f67fccfb4a6c1c853b4d9ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8351, "upload_time": "2019-02-07T00:30:55", "url": "https://files.pythonhosted.org/packages/2c/20/97d8bb841c9cee83aa5a303ded723148b8f5cde1123f8c67202ae5a68285/simplesmtp-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "9188cfdb3b84e88909a1ccbad4d6f641", "sha256": "3e2a4b353cd2299d793fd0717020254044398ae8f529fd791a260f2453eb357f" }, "downloads": -1, "filename": "simplesmtp-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9188cfdb3b84e88909a1ccbad4d6f641", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10012, "upload_time": "2019-02-22T18:59:12", "url": "https://files.pythonhosted.org/packages/81/65/1a664375ea89476c85fdf69d95b44081184e18feacc01d5d2c36f3c44c9a/simplesmtp-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "620540b42b13989e72f6c5fff41567f2", "sha256": "cc92858aad81b26277a850ab7c659befa0702e7ea000fccb4fe9408bce969af3" }, "downloads": -1, "filename": "simplesmtp-0.0.2.tar.gz", "has_sig": false, "md5_digest": "620540b42b13989e72f6c5fff41567f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8627, "upload_time": "2019-02-22T18:59:14", "url": "https://files.pythonhosted.org/packages/b1/ca/3e3f3b2aa443902fd536b65d6d5d2da464be3d25def2ee5409cf334afd36/simplesmtp-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "d08ebb09ce2e5a90175d2d64a8678d37", "sha256": "12942fc7aa620b8c3b6e236664b095b62ef13fde0f5dda082c3e282a5b78eb89" }, "downloads": -1, "filename": "simplesmtp-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d08ebb09ce2e5a90175d2d64a8678d37", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10032, "upload_time": "2019-05-31T22:15:54", "url": "https://files.pythonhosted.org/packages/cd/93/1b70f49c79b98fa7ace74dceaf714f708daa137fa54226d1342337bf9418/simplesmtp-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26fb2d5e52195900f72d96a0cd0589c5", "sha256": "4c58cbeeb90a0a963426785f815b2d28988f42034f63c454417e2ca1fe2a34be" }, "downloads": -1, "filename": "simplesmtp-0.0.3.tar.gz", "has_sig": false, "md5_digest": "26fb2d5e52195900f72d96a0cd0589c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8640, "upload_time": "2019-05-31T22:15:56", "url": "https://files.pythonhosted.org/packages/4e/d1/fbefdba905bb60af240ec14ca52d58d7a80549992e32231c45a60bcdcd31/simplesmtp-0.0.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d08ebb09ce2e5a90175d2d64a8678d37", "sha256": "12942fc7aa620b8c3b6e236664b095b62ef13fde0f5dda082c3e282a5b78eb89" }, "downloads": -1, "filename": "simplesmtp-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d08ebb09ce2e5a90175d2d64a8678d37", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10032, "upload_time": "2019-05-31T22:15:54", "url": "https://files.pythonhosted.org/packages/cd/93/1b70f49c79b98fa7ace74dceaf714f708daa137fa54226d1342337bf9418/simplesmtp-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26fb2d5e52195900f72d96a0cd0589c5", "sha256": "4c58cbeeb90a0a963426785f815b2d28988f42034f63c454417e2ca1fe2a34be" }, "downloads": -1, "filename": "simplesmtp-0.0.3.tar.gz", "has_sig": false, "md5_digest": "26fb2d5e52195900f72d96a0cd0589c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8640, "upload_time": "2019-05-31T22:15:56", "url": "https://files.pythonhosted.org/packages/4e/d1/fbefdba905bb60af240ec14ca52d58d7a80549992e32231c45a60bcdcd31/simplesmtp-0.0.3.tar.gz" } ] }