Metadata-Version: 2.1
Name: yagmail
Version: 0.15.293
Summary: Yet Another GMAIL client
Home-page: https://github.com/kootenpv/yagmail
Author: Pascal van Kooten
Author-email: kootenpv@gmail.com
License: MIT
Keywords: email mime automatic html attachment
Platform: any
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Customer Service
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Communications :: Email :: Email Clients (MUA)
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Requires-Dist: premailer
Provides-Extra: all
Requires-Dist: keyring ; extra == 'all'
Requires-Dist: dkimpy ; extra == 'all'
Provides-Extra: dkim
Requires-Dist: dkimpy ; extra == 'dkim'

yagmail - Yet another GMAIL / SMTP client
=========================================
`yagmail` is a GMAIL/SMTP client that aims to
make it as simple as possible to send emails.

Sending an Email is as simple:

.. code-block:: python

    import yagmail
    yag = yagmail.SMTP()
    contents = [
        "This is the body, and here is just text http://somedomain/image.png",
        "You can find an audio file attached.", '/local/path/to/song.mp3'
    ]
    yag.send('to@someone.com', 'subject', contents)

    # Alternatively, with a simple one-liner:
    yagmail.SMTP('mygmailusername').send('to@someone.com', 'subject', contents)

Note that yagmail will read the password securely from
your keyring, see the section on
`Username and Password in the repository's README
<https://github.com/kootenpv/yagmail#username-and-password>`_
for further details. If you do not want this, you can
initialize ``yagmail.SMTP`` like this:

.. code-block:: python

    yag = yagmail.SMTP('mygmailusername', 'mygmailpassword')

but honestly, do you want to have your
password written in your script?

For further documentation and examples,
please go to https://github.com/kootenpv/yagmail.

The full documentation is available at
http://yagmail.readthedocs.io/en/latest/.


