Metadata-Version: 2.1
Name: SendEmailPy3
Version: 1.1.2
Summary: Easy email sending for Python 3
Home-page: https://github.com/GouthamOfTheNP/send_email
Author: Goutham Narayana Pedinedi
Author-email: codspecialops@gmail.com
License: MIT
Keywords: send,email,python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
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: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown
License-File: LICENSE

# Email Sender Module
## Abstracted module for sending emails
### This module was made so that you don't have to worry about writing the code for sending emails yourself. This module can be used with multiple different email clients, and can be used to send multiple emails.

##### License must be followed while using this package.

## Documentation

### Parameters (required for all functions and methods)

Subject, content, receiver, username (sender's), password (sender's)
Additonal parameters: filepath

### Recommended import statement
```py
import sendemailpy3 as smpy
```

### Mail Commands
#### Gmail
```py
smpy.send_gmail(...)
```

#### Outlook
```py
smpy.send_outlook_email(...)
```

#### Yahoo Mail
```py
smpy.send_yahoo_email(...)
```

#### Proton Mail
```py
smpy.send_proton_email(...)
```

### Sending an email using procedural syntax
```py
import sendemailpy3 as smpy

smpy.send_gmail(...)
```

### Sending an email using object-oriented syntax
```py
import sendemailpy3 as smpy

email_sender = smpy.EmailSender()
email.send_gmail(...)
```
