Metadata-Version: 1.1
Name: gmailpy
Version: 1.0
Summary: A simple API wrapper for sending emails with Gmail
Home-page: https://github.com/iDutchy/gmailpy
Author: Niels Steenman
Author-email: ngssteenman@gmail.com
License: MIT
Download-URL: https://github.com/iDutchy/gmailpy/archive/1.0.tar.gz
Description: Gmailpy
        =======
        
        A simple API wrapper for sending emails with  Gmail
        
        Getting Started
        ---------------
        
        Install via pip (recommended)
        
        .. code:: bash
        
            pip install gmailpy
        
        Install from source
        
        .. code:: bash
        
            pip install git+https://github.com/iDutchy/gmailpy
            
        Getting Started
        ---------------
        
        First you need to create your client:
        
        .. code:: python
        
            import gmailpy
            
            client = gmailpy.Client("john.doe@gmail.com", "P@$$w0rd")
        
        Usage
        -----
        
        await client.send(receiver, content, subject=None, bcc=None, attachment_bytes=None, attachment_name=None)
        #########################################################################################################
        
        * **Parameters:**
            * reveiver (string): The receivers email address
            * content (string): The content of the email
            * subject (string): The email subject. *Defaults to "No subject"*
            * bcc (list): A list of other email addresses you want to send the mail to as BCC. *Defaults to None*
            * attachment_bytes (byte array): Attach anything  to the email. This has to be a byte array! When providing this, the `attachment_bytes` argument becomes required! *Defaults to None*
            * attachment_name (string): The **full** name of the attachment. This has to contain the file extension too! e.g "dog.png". This is required when providing `attachment_bytes`. *Defaults to None*
        
Keywords: gmail email
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
