{ "info": { "author": "Robert Lechte", "author_email": "robertlechte@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython" ], "description": "# emailx: easy as hell email sending for python\n\nInstall like this:\n\n pip install emailx\n\nUse like this:\n\n from emailx import Email, smtp_connection\n\n SMTP = 'smtp.example.com'\n\n LOGIN = ('alex', 'password123')\n\n dummy_recipients = 'Alex '\n\n with smtp_connection(SMTP, LOGIN) as c:\n e = Email(\n source='Alex ',\n subject='Hello',\n body='Body',\n html_body='Body',\n to_addresses='Bobby