Metadata-Version: 2.1
Name: emailSMS-python3
Version: 0.0.6
Summary: Gateway between email and SMS/MMS for python3
Home-page: https://github.com/JoeWomelsdorf/emailSMS_Python
Author: Joe Womelsdorf
Author-email: josef.womelsdorf@outlook.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/JoeWomelsdorf/emailSMS_Python/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# EmailSMS_Python
Gateway between email and SMS/MMS for Python3.  Allows for two way communication between a server and mobile device.  

## Installation

Install requirements with [pip](https://pip.pypa.io/en/stable/)

```bash
pip install emailSMS-python3
```

## Usage

```python
from emailSMS.emailSMS import Manager

# Initialize Manager Object
manager = Manager(phone_num='XXXXXXXXXX', carrier="XXXX",
                          email_address="EMAIL",
                          email_password="PASSWORD")

# Sends an SMS to the configured phone with a subject line "Hello, World!"
manager.send_sms("Hello, World!")

# Sends an MMS to the configured phone with a subject line "Hello, World!"
manager.send_mms("Hello, World!")

#Returns an array of new (unread) messages from the configured phone.
manager.check_incoming()
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)

