{"id":14983790,"url":"https://github.com/symfony/click-send-notifier","last_synced_at":"2026-01-25T10:06:52.120Z","repository":{"id":164454012,"uuid":"639909879","full_name":"symfony/click-send-notifier","owner":"symfony","description":"Symfony ClickSend Notifier Bridge","archived":false,"fork":false,"pushed_at":"2025-10-27T10:44:51.000Z","size":49,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"7.3","last_synced_at":"2025-10-27T12:30:54.971Z","etag":null,"topics":["click-send","component","notifier","php","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-05-12T13:58:59.000Z","updated_at":"2025-06-01T17:34:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"6a90d051-aeb2-417c-938c-00e760de2dc9","html_url":"https://github.com/symfony/click-send-notifier","commit_stats":{"total_commits":9,"total_committers":5,"mean_commits":1.8,"dds":0.4444444444444444,"last_synced_commit":"690df8d5567a696ef395921fdbce5f44983c784b"},"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"purl":"pkg:github/symfony/click-send-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fclick-send-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fclick-send-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fclick-send-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fclick-send-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/symfony","download_url":"https://codeload.github.com/symfony/click-send-notifier/tar.gz/refs/heads/7.3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/symfony%2Fclick-send-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28751125,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T09:58:17.166Z","status":"ssl_error","status_checked_at":"2026-01-25T09:55:56.104Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["click-send","component","notifier","php","symfony","symfony-component"],"created_at":"2024-09-24T14:07:55.421Z","updated_at":"2026-01-25T10:06:52.099Z","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":"ClickSend Notifier\n==================\n\nProvides [ClickSend](https://www.clicksend.com/) integration for Symfony Notifier.\n\nDSN example\n-----------\n\n```\nCLICKSEND_DSN=clicksend://API_USERNAME:API_KEY@default?from=FROM\u0026source=SOURCE\u0026list_id=LIST_ID\u0026from_email=FROM_EMAIL\n```\n\nwhere:\n\n - `API_USERNAME` is your ClickSend API username\n - `API_KEY` is your ClickSend API key\n - `FROM` is your sender (optional)\n - `SOURCE` is your source method of sending (optional)\n - `LIST_ID` is your recipient list ID (optional)\n - `FROM_EMAIL` is your from email where replies must be emailed (optional)\n\nAdding Options to a Message\n---------------------------\n\nWith a ClickSend Message, you can use the `ClickSendOptions` class to add\n[message options](https://developers.clicksend.com/docs/rest/v3/#send-sms/).\n\n```php\nuse Symfony\\Component\\Notifier\\Message\\SmsMessage;\nuse Symfony\\Component\\Notifier\\Bridge\\ClickSend\\ClickSendOptions;\n\n$sms = new SmsMessage('+1411111111', 'My message');\n\n$options = (new ClickSendOptions())\n    -\u003ecountry('country')\n    -\u003ecustomString('custom_string')\n    -\u003efromEmail('from_email')\n    -\u003elistId('list_id')\n    -\u003eschedule(999)\n    -\u003esource('source')\n    // ...\n    ;\n\n// Add the custom options to the sms message and send the message\n$sms-\u003eoptions($options);\n\n$texter-\u003esend($sms);\n```\n\nResources\n---------\n\n * [Contributing](https://symfony.com/doc/current/contributing/index.html)\n * [Report issues](https://github.com/symfony/symfony/issues) and\n   [send Pull Requests](https://github.com/symfony/symfony/pulls)\n   in the [main Symfony repository](https://github.com/symfony/symfony)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsymfony%2Fclick-send-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsymfony%2Fclick-send-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsymfony%2Fclick-send-notifier/lists"}