{"id":14983776,"url":"https://github.com/symfony/smsbox-notifier","last_synced_at":"2026-01-25T00:01:25.556Z","repository":{"id":213924453,"uuid":"735274454","full_name":"symfony/smsbox-notifier","owner":"symfony","description":"Symfony Smsbox Notifier Bridge","archived":false,"fork":false,"pushed_at":"2026-01-13T21:22:26.000Z","size":45,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"8.1","last_synced_at":"2026-01-22T15:14:00.235Z","etag":null,"topics":["component","notifier","php","sms","smsbox","symfony","symfony-component"],"latest_commit_sha":null,"homepage":"https://symfony.com/notifier","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/symfony.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["fabpot","nicolas-grekas"],"custom":"https://symfony.com/sponsor","tidelift":"packagist/symfony/symfony"}},"created_at":"2023-12-24T10:09:22.000Z","updated_at":"2025-12-06T16:53:51.000Z","dependencies_parsed_at":"2023-12-24T11:03:37.829Z","dependency_job_id":"6118cea0-be3d-436d-8b37-b0ccdb3d4214","html_url":"https://github.com/symfony/smsbox-notifier","commit_stats":{"total_commits":8,"total_committers":6,"mean_commits":"1.3333333333333333","dds":0.75,"last_synced_commit":"e569493bcdb28c1fb078d13afd53597b8431e48d"},"previous_names":["symfony/smsbox-notifier"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/symfony/smsbox-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fsmsbox-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fsmsbox-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fsmsbox-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fsmsbox-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/symfony","download_url":"https://codeload.github.com/symfony/smsbox-notifier/tar.gz/refs/heads/8.1","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fsmsbox-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28739316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["component","notifier","php","sms","smsbox","symfony","symfony-component"],"created_at":"2024-09-24T14:07:54.361Z","updated_at":"2026-01-25T00:01:25.526Z","avatar_url":"https://github.com/symfony.png","language":"PHP","funding_links":["https://github.com/sponsors/fabpot","https://github.com/sponsors/nicolas-grekas","https://symfony.com/sponsor","https://tidelift.com/funding/github/packagist/symfony/symfony"],"categories":[],"sub_categories":[],"readme":"SMSBOX Notifier\n---------------\n\nProvides [SMSBOX](https://www.smsbox.net/en/) integration for Symfony Notifier.\n\nDSN example\n-----------\n\n```\nSMSBOX_DSN=smsbox://APIKEY@default?mode=MODE\u0026strategy=STRATEGY\u0026sender=SENDER\n```\n\nwhere:\n\n- `APIKEY` is your SMSBOX api key\n- `MODE` is the sending mode\n- `STRATEGY` is the type of your message\n- `SENDER` is the sender name\n\n## You can add numerous options to a message\n\nWith a SMSBOX Message, you can use the SmsboxOptions class and use the setters to add [message options](https://www.smsbox.net/en/tools-development#developer-space)\n\n```php\nuse Symfony\\Component\\Notifier\\Bridge\\Smsbox\\Enum\\Charset;\nuse Symfony\\Component\\Notifier\\Bridge\\Smsbox\\Enum\\Day;\nuse Symfony\\Component\\Notifier\\Bridge\\Smsbox\\Enum\\Encoding;\nuse Symfony\\Component\\Notifier\\Bridge\\Smsbox\\Enum\\Mode;\nuse Symfony\\Component\\Notifier\\Bridge\\Smsbox\\Enum\\Strategy;\nuse Symfony\\Component\\Notifier\\Bridge\\Smsbox\\Enum\\Udh;\nuse Symfony\\Component\\Notifier\\Bridge\\Smsbox\\SmsboxOptions;\nuse Symfony\\Component\\Notifier\\Message\\SmsMessage;\n\n$sms = new SmsMessage('+33123456789', 'Your %1% message %2%');\n$options = (new SmsboxOptions())\n    -\u003emode(Mode::Expert)\n    -\u003estrategy(Strategy::NotMarketingGroup)\n    -\u003esender('Your sender')\n    -\u003edate('DD/MM/YYYY')\n    -\u003ehour('HH:MM')\n    -\u003ecoding(Encoding::Unicode)\n    -\u003echarset(Charset::Iso1)\n    -\u003eudh(Udh::DisabledConcat)\n    -\u003ecallback(true)\n    -\u003eallowVocal(true)\n    -\u003emaxParts(2)\n    -\u003evalidity(100)\n    -\u003edaysMinMax(min: Day::Tuesday, max: Day::Friday)\n    -\u003ehoursMinMax(min: 8, max: 10)\n    -\u003evariable(['variable1', 'variable2'])\n    -\u003edateTime(new \\DateTime())\n    -\u003edestIso('FR');\n\n$sms-\u003eoptions($options);\n$texter-\u003esend($sms);\n```\n## Smsbox notifier also provides Webhooks support. 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsymfony%2Fsmsbox-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsymfony%2Fsmsbox-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsymfony%2Fsmsbox-notifier/lists"}