{"id":22431159,"url":"https://github.com/mrcl0wnlab/sendermailgunpython","last_synced_at":"2025-09-14T05:22:27.399Z","repository":{"id":133103211,"uuid":"259790590","full_name":"MrCl0wnLab/SenderMailgunPython","owner":"MrCl0wnLab","description":"Modulo Python criado para envio simples de email via API Mailgun ","archived":false,"fork":false,"pushed_at":"2020-04-29T01:50:28.000Z","size":17,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-01T12:02:49.390Z","etag":null,"topics":["ecommerce","email","mailgun","marketing","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MrCl0wnLab.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-04-29T01:09:26.000Z","updated_at":"2024-08-12T20:00:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"3b173ceb-3cbe-4850-a6f3-cfcba0dd5b77","html_url":"https://github.com/MrCl0wnLab/SenderMailgunPython","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MrCl0wnLab/SenderMailgunPython","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCl0wnLab%2FSenderMailgunPython","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCl0wnLab%2FSenderMailgunPython/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCl0wnLab%2FSenderMailgunPython/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCl0wnLab%2FSenderMailgunPython/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MrCl0wnLab","download_url":"https://codeload.github.com/MrCl0wnLab/SenderMailgunPython/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCl0wnLab%2FSenderMailgunPython/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275062966,"owners_count":25398888,"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","status":"online","status_checked_at":"2025-09-14T02:00:10.474Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["ecommerce","email","mailgun","marketing","python"],"created_at":"2024-12-05T21:22:09.366Z","updated_at":"2025-09-14T05:22:27.390Z","avatar_url":"https://github.com/MrCl0wnLab.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SenderMailgunPython\n \n[![Python 3.7](https://img.shields.io/badge/python-3.7-yellow.svg)](https://www.python.org/)\n[![Build](https://img.shields.io/badge/Supported_OS-Linux-orange.svg)]()\n[![Build](https://img.shields.io/badge/Supported_OS-Mac-orange.svg)]()\n![GitHub](https://img.shields.io/github/license/MrCl0wnLab/SenderMailgunPython?color=blue)\n\nModulo Python criado para envio simples de email via API Mailgun\n\n```\n + Autor: MrCl0wn\n + Blog: http://blog.mrcl0wn.com\n + GitHub: https://github.com/MrCl0wnLab\n + Twitter: https://twitter.com/MrCl0wnLab\n + Email: mrcl0wnlab\\@\\gmail.com\n```\n\n## Access Your Domains\n\u003e https://app.mailgun.com/app/sending/domains\n\n## Access Your Private API key\n\u003e https://app.mailgun.com/app/account/security/api_keys\n\n\n\n## Implementation Code\n```python\nimport sendmailgun\n\n# Instantiate the client.\nsendmailgun.API_KEY = 'YOUR_KEY_MAILGUN'\n\nemails = ['xxx@gmail.com','yyy@gmail.com','ZZZ@bol.com.br']\n\nbody = ' \u003ch1\u003eclick teste!!!xxx\u003c/h1\u003e'\n\nfor email_target in emails:\n\n    post_data = {\n    'from': 'Your Name \u003cyou@your-mail.com.br\u003e',\n    'to': [email_target],\n    'subject':'Your subject',\n    'html':body\n    }\n\n    # Action sender.\n    sendmailgun.send_mail('marketing.your-mail.com.br',post_data)\n    print(mailgun.RESULT_SEND)\n```\n## Video\n[![asciicast](https://asciinema.org/a/PfmqNN6TPhpSrSYwlPO4t28oy.svg)](https://asciinema.org/a/PfmqNN6TPhpSrSYwlPO4t28oy)\n\n## Result\n![Screenshot](https://i.imgur.com/9jzunUU.png)\n\n## Reference:\n\u003e https://documentation.mailgun.com/en/latest/api-sending.html#sending\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrcl0wnlab%2Fsendermailgunpython","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrcl0wnlab%2Fsendermailgunpython","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrcl0wnlab%2Fsendermailgunpython/lists"}