{"id":20379929,"url":"https://github.com/donnc/bulksmszw","last_synced_at":"2025-04-12T08:33:06.863Z","repository":{"id":48837588,"uuid":"319933239","full_name":"DonnC/bulksmszw","owner":"DonnC","description":"bulksmszw port for bulksmszw-api python library. Send bulk sms using bulksmsweb services with ease with support for Zim numbers and sending sms to teams","archived":false,"fork":false,"pushed_at":"2021-07-09T07:10:07.000Z","size":139,"stargazers_count":7,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T03:41:31.502Z","etag":null,"topics":["bulksms","bulksmszw","flutter","flutter-dart"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/bulksmszw","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DonnC.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-12-09T11:19:55.000Z","updated_at":"2022-11-02T14:48:31.000Z","dependencies_parsed_at":"2022-09-13T08:31:35.733Z","dependency_job_id":null,"html_url":"https://github.com/DonnC/bulksmszw","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonnC%2Fbulksmszw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonnC%2Fbulksmszw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonnC%2Fbulksmszw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonnC%2Fbulksmszw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DonnC","download_url":"https://codeload.github.com/DonnC/bulksmszw/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248540436,"owners_count":21121359,"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":["bulksms","bulksmszw","flutter","flutter-dart"],"created_at":"2024-11-15T02:05:32.762Z","updated_at":"2025-04-12T08:33:06.834Z","avatar_url":"https://github.com/DonnC.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [bulksmszw](http://www.bulksmsweb.com/)\n\n\u003cimg src=\"https://img.shields.io/pub/v/bulksmszw?style=for-the-badge\"\u003e\n\u003cimg src=\"https://img.shields.io/github/last-commit/DonnC/bulksmszw\"\u003e\n\u003cimg src=\"https://img.shields.io/twitter/url?label=donix22\u0026style=social\u0026url=https%3A%2F%2Ftwitter.com%2Fdonix_22\"\u003e\n\nA flutter or dart plugin for developers to use the `bulksmsweb` api services\n\n* bulksmszw api, a port for [bulksmszw-api python library](https://github.com/DonnC/BulkSmsZW-Api). Send bulk sms using bulksmsweb services\n\n## Authentication details\n- register an account on [bulksms website](http://www.bulksmsweb.com/)\n- if already have an account, login on [bulksms web portal](http://portal.bulksmsweb.com)\n- Got to \"My Account\", then Click on \"User Configuration\", to obtain \"Webservices token\".\n- Use your `webservices token` as `bulksmsWebKey` and registered `username` as `bulksmsWebName`\n\n## Usage\n[Example](https://github.com/DonnC/bulksmszw/tree/main/example/app)\n\n# Screenshot\n\u003ctable\u003e\n   \u003ctr\u003e\n      \u003ctd\u003e Demo App\u003c/td\u003e\n      \u003ctd\u003e Sms inbox\u003c/td\u003e\n   \u003c/tr\u003e\n   \u003ctr\u003e\n      \u003ctd\u003e\u003cimg src=\"screenshots/app.png\"\u003c/td\u003e\n      \u003ctd\u003e\u003cimg src=\"screenshots/inbox.png\"\u003c/td\u003e\n   \u003c/tr\u003e\n\u003c/table\u003e\n\nTo use bulksmszw package, add it to your project `pubspec.yaml`\n```yaml\ndependencies:\n  flutter:\n    sdk: flutter\n\n  bulksmszw: ^2.0.0-dev\n```\n\n## How to use\nFirst import the `bulksmszw` package in your dart file\n```dart\nimport 'package:bulksmszw/bulksmszw.dart';\n```\n\nCreate a `BulkSmsZw()` object passing in your api-key and api-username\n\n```dart\nfinal smsApi = BulkSmsZw(\n      bulksmsWebKey: '\u003cyour-api-key\u003e',\n      bulksmsWebName: '\u003cyour-api-username\u003e',\n    );\n```\n\n### Send (bulk) SMS\nTo send a message, pass your `contacts` in a list as a list string\n```dart\nList\u003cString\u003e contacts = [\n    '263777777777',\n    '#flutterDev',  // you can pass group names too\n];\n\nApiResponse _response = await smsApi.send(\n   message: 'Please be reminded that project deadline is today at 15:45pm',\n  recipients: contacts,\n);\n\n// you can check response from ApiResponse -\u003e _response\nif(_response.statusresponse == SMSRESPONSE.SUCCESS)\n{\n    showSuccessToast();\n}\n```\n\n## Features\n- [✔]  Send SMS\n- [✔]  Customized api response \n- [❌] Schedule messages\n- [❌] Validate phone numbers\n\n## Api Changes\nApi changes are available on [CHANGELOG](CHANGELOG.md)\n\n### Additionals\n- features and pr and contributions are welcome.\n- api docs for bulksmsweb at [HTTP API INTEGRATION DOC](http://portal.bulksmsweb.com/downloads/BulkSMS-API.pdf)\n- *unofficial bulksmsweb package\n\n## Getting Started\n\nThis project is a starting point for a Dart\n[package](https://flutter.dev/developing-packages/),\na library module containing code that can be shared easily across\nmultiple Flutter or Dart projects.\n\nFor help getting started with Flutter, view our \n[online documentation](https://flutter.dev/docs), which offers tutorials, \nsamples, guidance on mobile development, and a full API reference.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonnc%2Fbulksmszw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdonnc%2Fbulksmszw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonnc%2Fbulksmszw/lists"}