{"id":15486005,"url":"https://github.com/mishakorzik/sendtomail","last_synced_at":"2025-04-22T15:26:32.998Z","repository":{"id":59145151,"uuid":"535236307","full_name":"mishakorzik/sendtomail","owner":"mishakorzik","description":"Free SMTP email sender, using virtual email.","archived":false,"fork":false,"pushed_at":"2023-01-22T13:06:17.000Z","size":16841,"stargazers_count":28,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-13T22:51:25.666Z","etag":null,"topics":["api","emacs","email","free-mail","gmail","gmail-api","pip","pypi","python","python3","send","smtp","smtp-server","smtplib","temp-mail","termux-hacking","termux-tool"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mishakorzik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-11T08:32:32.000Z","updated_at":"2025-04-03T21:02:03.000Z","dependencies_parsed_at":"2023-02-12T16:15:45.049Z","dependency_job_id":null,"html_url":"https://github.com/mishakorzik/sendtomail","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishakorzik%2Fsendtomail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishakorzik%2Fsendtomail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishakorzik%2Fsendtomail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishakorzik%2Fsendtomail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mishakorzik","download_url":"https://codeload.github.com/mishakorzik/sendtomail/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250266358,"owners_count":21402274,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","emacs","email","free-mail","gmail","gmail-api","pip","pypi","python","python3","send","smtp","smtp-server","smtplib","temp-mail","termux-hacking","termux-tool"],"created_at":"2024-10-02T06:05:36.069Z","updated_at":"2025-04-22T15:26:32.972Z","avatar_url":"https://github.com/mishakorzik.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## 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# Enable debug for more information\n\u003e\u003e\u003e from sendtomail import *\n\u003e\u003e\u003e server.debug(\"on\")\n\n# Disable debug for more information\n\u003e\u003e\u003e from sendtomail import *\n\u003e\u003e\u003e server.debug(\"off\")\n\n\n# Send free message to email (plain)\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e server.send(\"gmail.com\", \"he1zen@null.net\", \"plain\", \"Test subject\", \"hello, its a test message!\")\n'200'\n\u003e\u003e\u003e\n\n# Send free message to email (html)\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e server.send(\"gmail.com\", \"he1zen@null.net\", \"html\", \"Test subject\", \n\"\"\"\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\u003cbody\u003e\n      \u003ch1\u003e hello, its a test message! \u003c/h1\u003e\n\u003c/body\u003e\n\u003c/html\u003e\"\"\")\n'200'\n\u003e\u003e\u003e\n\n```\n\n#### Text message \u003cimg 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\"/\u003e\n\n#### Html message \u003cimg 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\"/\u003e\n\n---\n\n```python\n# Servers list\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e regions = server.regions()\n\u003e\u003e\u003e print(regions)\nSMTP servers: gmail.com, yandex.com, mail.ru\n\u003e\u003e\u003e\n\n# Get Free SMTP, POP3, IMAP email\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e server.mail()\n{'google-mail': 'qcp9ex.iqu0@gmail.com', 'google-pass': 'dmxsdxqgvlcypitf'}\n\u003e\u003e\u003e\n\n# Free email checker\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e server.validate(\"he1zen@null.net\")\n'valid'\n\u003e\u003e\u003e\n\n# Send custom data\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e 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\u003e\u003e\u003e \n\n```\n\n### Server Information\n\n```\n\n# get server info with print\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e server.info(False)\nlocation: Ukraine\ncreator: He1Zen, mishakorzik\nmirror: Europe, amazon\nping: 50-70ms\n\u003e\u003e\u003e \n\n# get server info with return\n\u003e\u003e\u003e from sendtomail import server\n\u003e\u003e\u003e server.info(True)\n'\\nlocation  : Ukraine\\nServer IP : 185.16.36.136\\ncreator   : He1Zen, mishakorzik\\nmirror    : Europe, amazon\\nping      : 50-70ms\\n'\n\u003e\u003e\u003e \n\n```\n\n### Temp Mail Creation\n\n```python\n# Create temp mail\n\u003e\u003e\u003e from sendtomail import tempmail\n\u003e\u003e\u003e tempmail.create()\n'qwm5cn282k55sp@dcctb.com'\n\u003e\u003e\u003e \n\n# Read last message from temp mail\n\u003e\u003e\u003e from sendtomail import tempmail\n\u003e\u003e\u003e tempmail.read(\"qwm5cn282k55sp\", \"dcctb.com\")\nmailbox is empty\n\u003e\u003e\u003e \n\n```\n\n## For Windows\n\ndownload file \u003ca href='https://drive.google.com/file/d/1njyyb_LJHnQznPHg9wn1NJ0s3oIgWwHv/view?usp=sharing'\u003esendtomail.exe - v1\u003c/a\u003e\ndownload file \u003ca href='https://drive.google.com/file/d/1Nro-hUV63g0vjS8A135XSWPeEuwePdvx/view?usp=drivesdk'\u003esendtomail.exe - v2\u003c/a\u003e\ndownload file \u003ca href='https://drive.google.com/file/d/1jErK0PHP8yOazigiIh-TGUMRaBdesmIQ/view?usp=drivesdk'\u003esendtomail.exe - v3\u003c/a\u003e\ndownload file \u003ca href='https://drive.google.com/file/d/1PjANjknXugxG8wa8TKLsSjhksWXSFFSL/view?usp=share_link'\u003esendtomail.exe - v4\u003c/a\u003e\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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmishakorzik%2Fsendtomail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmishakorzik%2Fsendtomail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmishakorzik%2Fsendtomail/lists"}