sendtomail


Namesendtomail JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttps://github.com/mishakorzik/sendtomail
SummaryFree SMTP email sender using virtual email address.
upload_time2023-01-24 22:37:44
maintainer
docs_urlNone
authorMishaKorzhik_He1Zen
requires_python>=3.5
licenseApache 2.0
keywords smtp pip pypi email virtual send server sender emails email address imap pop3 temp mail tempmail temp-mail smtplib virtual mail mail
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Usage

#### Send free message to email, without your email! It is strictly forbidden to send spam or threats or 18+

```python
# debug settings for more information
>>> from sendtomail import *
>>> server.debug("on") #enable
>>> server.debug("off") #disable

# Send free message to email (plain)
>>> from sendtomail import *
>>> server.send("gmail.com", "he1zen@null.net", "plain", "Test subject", "hello, its a test message!")
'200'
>>>

# Send free message to email (html)
>>> from sendtomail import *
>>> server.send("gmail.com", "he1zen@null.net", "html", "Test subject", 
"""<!DOCTYPE html>
<html>
<body>
      <h1> hello, its a test message! </h1>
</body>
</html>""")
'200'
>>>

```

#### Text message <img width="99.9%" src="https://raw.githubusercontent.com/mishakorzik/mishakorzik.menu.io/master/%D0%A1%D0%B5%D1%80%D0%B2%D0%B5%D1%80/Screenshot_2023-01-22-14-44-57-023-edit_com.google.android.gm.jpg"/>

#### Html message <img width="99.9%" src="https://raw.githubusercontent.com/mishakorzik/mishakorzik.menu.io/master/%D0%A1%D0%B5%D1%80%D0%B2%D0%B5%D1%80/Screenshot_2023-01-22-14-48-09-961-edit_com.google.android.gm.jpg"/>

---

```python
# Servers list
>>> from sendtomail import *
>>> regions = server.regions()
>>> print(regions)
SMTP servers: gmail.com, yandex.com, mail.ru
>>>

# Get Free SMTP, POP3, IMAP email
>>> from sendtomail import *
>>> server.mail()
{'google-mail': 'qcp9ex.iqu0@gmail.com', 'google-pass': 'dmxsdxqgvlcypitf'}
>>>

# Free email checker
>>> from sendtomail import *
>>> server.validate("he1zen@null.net")
'valid'
>>>

# Send custom data
>>> from sendtomail import *
>>> custom.data("^38^92%72^92%65^92%10")
'\nlocation  : Ukraine\nServer IP : 185.16.36.136\ncreator   : He1Zen, mishakorzik\nmirror    : Europe, amazon\nping      : 50-70ms\n'
>>> 

```

### Server Information

```

# get server info with print
>>> from sendtomail import *
>>> server.info(False)
location: Ukraine
creator: He1Zen, mishakorzik
mirror: Europe, amazon
ping: 50-70ms
>>> 

# get server info with return
>>> from sendtomail import *
>>> server.info(True)
'\nlocation  : Ukraine\nServer IP : 185.16.36.136\ncreator   : He1Zen, mishakorzik\nmirror    : Europe, amazon\nping      : 50-70ms\n'
>>> 

```

### Temp Mail Creation

```python
# Create temp mail
>>> from sendtomail import tempmail
>>> tempmail.create()
'qwm5cn282k55sp@dcctb.com'
>>> 

# Read last message from temp mail
>>> from sendtomail import tempmail
>>> tempmail.read("qwm5cn282k55sp", "dcctb.com")
mailbox is empty
>>> 

```

## For Windows

download file <a href='https://drive.google.com/file/d/1njyyb_LJHnQznPHg9wn1NJ0s3oIgWwHv/view?usp=sharing'>sendtomail.exe - v1</a>
download file <a href='https://drive.google.com/file/d/1Nro-hUV63g0vjS8A135XSWPeEuwePdvx/view?usp=drivesdk'>sendtomail.exe - v2</a>
download file <a href='https://drive.google.com/file/d/1jErK0PHP8yOazigiIh-TGUMRaBdesmIQ/view?usp=drivesdk'>sendtomail.exe - v3</a>
download file <a href='https://drive.google.com/file/d/1PjANjknXugxG8wa8TKLsSjhksWXSFFSL/view?usp=share_link'>sendtomail.exe - v4</a>

and start file, i recommend select gmail.com server.

## Tool information

```
## Status codes
200 - Succesfully send
400 - Failed to send
401 - bad request or wrong command
403 - Email protected or secured
404 - Email not found, try another email
429 - Server error, choose another server
500 - Internal Server Error, try again later
503 - Service Unavailable, try again later
504 - Try another server

## Other codes
valid   - mailbox exists
invalid - mailbox does not exist
timeout - mailbox is unknown

## Services
gmail.com   - fast - recommend 
yandex.com  - slow - not recommend
mail.ru     - slow - not recommend
```

**there are logs on the server for security purposes**

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mishakorzik/sendtomail",
    "name": "sendtomail",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "smtp,pip,pypi,email,virtual,send,server,sender,emails,email address,imap,pop3,temp mail,tempmail,temp-mail,smtplib,virtual mail,mail",
    "author": "MishaKorzhik_He1Zen",
    "author_email": "developer.mishakorzhik@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c4/5c/44348ec413c3719a4879a80d1cf73f2397f26a594f7230461af23b775cb1/sendtomail-0.5.0.tar.gz",
    "platform": null,
    "description": "## Usage\n\n#### Send free message to email, without your email! It is strictly forbidden to send spam or threats or 18+\n\n```python\n# debug settings for more information\n>>> from sendtomail import *\n>>> server.debug(\"on\") #enable\n>>> server.debug(\"off\") #disable\n\n# Send free message to email (plain)\n>>> from sendtomail import *\n>>> server.send(\"gmail.com\", \"he1zen@null.net\", \"plain\", \"Test subject\", \"hello, its a test message!\")\n'200'\n>>>\n\n# Send free message to email (html)\n>>> from sendtomail import *\n>>> server.send(\"gmail.com\", \"he1zen@null.net\", \"html\", \"Test subject\", \n\"\"\"<!DOCTYPE html>\n<html>\n<body>\n      <h1> hello, its a test message! </h1>\n</body>\n</html>\"\"\")\n'200'\n>>>\n\n```\n\n#### Text message <img width=\"99.9%\" src=\"https://raw.githubusercontent.com/mishakorzik/mishakorzik.menu.io/master/%D0%A1%D0%B5%D1%80%D0%B2%D0%B5%D1%80/Screenshot_2023-01-22-14-44-57-023-edit_com.google.android.gm.jpg\"/>\n\n#### Html message <img width=\"99.9%\" src=\"https://raw.githubusercontent.com/mishakorzik/mishakorzik.menu.io/master/%D0%A1%D0%B5%D1%80%D0%B2%D0%B5%D1%80/Screenshot_2023-01-22-14-48-09-961-edit_com.google.android.gm.jpg\"/>\n\n---\n\n```python\n# Servers list\n>>> from sendtomail import *\n>>> regions = server.regions()\n>>> print(regions)\nSMTP servers: gmail.com, yandex.com, mail.ru\n>>>\n\n# Get Free SMTP, POP3, IMAP email\n>>> from sendtomail import *\n>>> server.mail()\n{'google-mail': 'qcp9ex.iqu0@gmail.com', 'google-pass': 'dmxsdxqgvlcypitf'}\n>>>\n\n# Free email checker\n>>> from sendtomail import *\n>>> server.validate(\"he1zen@null.net\")\n'valid'\n>>>\n\n# Send custom data\n>>> from sendtomail import *\n>>> custom.data(\"^38^92%72^92%65^92%10\")\n'\\nlocation  : Ukraine\\nServer IP : 185.16.36.136\\ncreator   : He1Zen, mishakorzik\\nmirror    : Europe, amazon\\nping      : 50-70ms\\n'\n>>> \n\n```\n\n### Server Information\n\n```\n\n# get server info with print\n>>> from sendtomail import *\n>>> server.info(False)\nlocation: Ukraine\ncreator: He1Zen, mishakorzik\nmirror: Europe, amazon\nping: 50-70ms\n>>> \n\n# get server info with return\n>>> from sendtomail import *\n>>> server.info(True)\n'\\nlocation  : Ukraine\\nServer IP : 185.16.36.136\\ncreator   : He1Zen, mishakorzik\\nmirror    : Europe, amazon\\nping      : 50-70ms\\n'\n>>> \n\n```\n\n### Temp Mail Creation\n\n```python\n# Create temp mail\n>>> from sendtomail import tempmail\n>>> tempmail.create()\n'qwm5cn282k55sp@dcctb.com'\n>>> \n\n# Read last message from temp mail\n>>> from sendtomail import tempmail\n>>> tempmail.read(\"qwm5cn282k55sp\", \"dcctb.com\")\nmailbox is empty\n>>> \n\n```\n\n## For Windows\n\ndownload file <a href='https://drive.google.com/file/d/1njyyb_LJHnQznPHg9wn1NJ0s3oIgWwHv/view?usp=sharing'>sendtomail.exe - v1</a>\ndownload file <a href='https://drive.google.com/file/d/1Nro-hUV63g0vjS8A135XSWPeEuwePdvx/view?usp=drivesdk'>sendtomail.exe - v2</a>\ndownload file <a href='https://drive.google.com/file/d/1jErK0PHP8yOazigiIh-TGUMRaBdesmIQ/view?usp=drivesdk'>sendtomail.exe - v3</a>\ndownload file <a href='https://drive.google.com/file/d/1PjANjknXugxG8wa8TKLsSjhksWXSFFSL/view?usp=share_link'>sendtomail.exe - v4</a>\n\nand start file, i recommend select gmail.com server.\n\n## Tool information\n\n```\n## Status codes\n200 - Succesfully send\n400 - Failed to send\n401 - bad request or wrong command\n403 - Email protected or secured\n404 - Email not found, try another email\n429 - Server error, choose another server\n500 - Internal Server Error, try again later\n503 - Service Unavailable, try again later\n504 - Try another server\n\n## Other codes\nvalid   - mailbox exists\ninvalid - mailbox does not exist\ntimeout - mailbox is unknown\n\n## Services\ngmail.com   - fast - recommend \nyandex.com  - slow - not recommend\nmail.ru     - slow - not recommend\n```\n\n**there are logs on the server for security purposes**\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Free SMTP email sender using virtual email address.",
    "version": "0.5.0",
    "split_keywords": [
        "smtp",
        "pip",
        "pypi",
        "email",
        "virtual",
        "send",
        "server",
        "sender",
        "emails",
        "email address",
        "imap",
        "pop3",
        "temp mail",
        "tempmail",
        "temp-mail",
        "smtplib",
        "virtual mail",
        "mail"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c45c44348ec413c3719a4879a80d1cf73f2397f26a594f7230461af23b775cb1",
                "md5": "d92f0894f6e8ba125b5bec54489b46a0",
                "sha256": "0db9e8f9469515803ff6800a7ee82f550767f278c3ce650b1a6401f3e91f0a49"
            },
            "downloads": -1,
            "filename": "sendtomail-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d92f0894f6e8ba125b5bec54489b46a0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 5712,
            "upload_time": "2023-01-24T22:37:44",
            "upload_time_iso_8601": "2023-01-24T22:37:44.152805Z",
            "url": "https://files.pythonhosted.org/packages/c4/5c/44348ec413c3719a4879a80d1cf73f2397f26a594f7230461af23b775cb1/sendtomail-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-24 22:37:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "mishakorzik",
    "github_project": "sendtomail",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "sendtomail"
}
        
Elapsed time: 0.03091s