Metadata-Version: 2.1
Name: myemail
Version: 0.9.0
Summary: A simple package to send emails with python
Home-page: https://github.com/tct123/myemail
License: MIT
Author: tct123
Author-email: 42028373+tct123@users.noreply.github.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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
Project-URL: Repository, https://github.com/tct123/myemail
Description-Content-Type: text/markdown

# MyEmail
A simple library to send emails with python
## Example
```python
from myemail.myemail import send
import os

sslport = os.getenv("SSLPORT")  # For SSL
password = os.getenv("PASSWORD")
smtpserver = os.getenv("SMTPSERVER")
emailvar = os.getenv("EMAIL")
attachment_path = f"{os.getenv('HOME')}/testfile123.txt"
print(attachment_path)
send(
    msg_content="test",
    from_email=emailvar,
    to_email=emailvar,
    subject="test",
    sslport=sslport,
    password=password,
    attachment_path=attachment_path,
)

```

## Contact
- [GitHub (Repo)](https://github.com/tct123/myemail)
- [GitHub](https://github.com/tct123)

