{
"info": {
"author": "Aiden (Dev)",
"author_email": "",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3"
],
"description": "## Emailer\n\n\n* `Send Email easily with python.`\n\n
\n\n## Installation\n\n* Install Package Using `pip`\n ```shell script\n python3 pip install Emailer\n ```\n\n
\n\n### How to use:\n\n* How to send Email\n ```python\n from Emailer.core import EmailSender\n\n # Configuring HOST\n HOST_USER = 'example@gmail.com'\n HOST_PASSWORD = 'secretpassword'\n sender = EmailSender(HOST_USER, HOST_PASSWORD)\n\n # Lets send the email\n\n # This is out email content (a html file) You can also refer\n # to variables like jinja template\n html_file_path = '/some/path/name.html' #