Metadata-Version: 2.1
Name: access_outlook_email
Version: 0.0.5
Summary: Send Emails via Outlook
Home-page: UNKNOWN
Author: Valentin Baier
Author-email: valentin_baier@gmx.de
License: UNKNOWN
Keywords: python,email,outlook,send,send email
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Access Outlook Email
This project contains the basic files to send an email through the module ```exchangelib```.

## Installation
Note that the module requires ```Python 3.6``` or higher.

To install the module, run a pip command like the following:


```
pip install access_outlook_email
```

## Usage
Simply import the modules via the following import statements:
```
from accessOutlookEmail import create_account, send_email
```

The ```create_account``` function requires your Outlook-Exchange email-address and your password.

To send an email, the following code provides the core functionality:
```
account = create_account('user@provider.com', '***')

send_email(account, 'TestSubject', 'TestBody', ['recepient@provider.com'])
```

## License
This project is licensed by a MIT License.

## Project status
The current released version is 0.0.5.


