Metadata-Version: 2.1
Name: sendtomail
Version: 0.1.3
Summary: Free SMTP email sender using virtual email address.
Home-page: https://github.com/mishakorzik/sendtomail
Author: MishaKorzhik_He1Zen
Author-email: developer.mishakorzhik@gmail.com
License: Apache 2.0
Project-URL: Bug Tracker, https://github.com/mishakorzik/sendtomail/issues
Project-URL: Sponsor, https://www.buymeacoffee.com/mishakorzik
Keywords: smtp,pip,pypi,email,virtual,send,server,sender,emails,email address,imap,pop3
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
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: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown

## Usage

#### Send free message to email, without your email!

```python
# Send free message to email, debug OFF
>>> from sendtomail import *
>>> server.send("ua", "he1zen@null.net", "hello, its a test message!")
b'200'
>>>

# Send free message to email, debug ON
>>> from sendtomail import *
>>> server.debug("on")
>>> server.send("ua", "he1zen@null.net", "hello, its a test message!")
[3%] Debug mode ON
[7%] Region ua
[11%] Starting to get URL
[20%] Getting json from URL
[40%] URL json data decode
[60%] Server IP 18.189.106.45
[80%] Server connected!
[100%] Data send to server
b'200'
>>>

# Regions list
>>> from sendtomail import *
>>> regions = server.regions()
>>> print(regions)
SMTP regions: de, uk, us, it, es, tw, cn, ar, au, fr, ca, in, hk, th, sg, vn, ua, ru, tr, zn
>>>

```

```
## Status oodes
200 - Succesfully send
400 - bad options
409 - Alternative sender error
429 - Try in 1 day or choose another region
500 - Internal Server Error
503 - Service Unavailable
504 - Try another region

## Recommended regions
ua - ukraine
ru - russia
tr - turkey
de - gernamy
us - united states
uk - united kingdom
it - italia
fr - france

## Region Country
us - united states
uk - united kingdom
ar - argentina
au - australia
vn - vietnam
ca - canada
in - india
fr - france
th - tailand
sg - singapore
de - germany
es - spain
cn - chine
tr - turkey
tw - taiwan
it - italy
ua - ukraine
ru - russia
zn - new zeland
```
