symfony / sms-proxima-notifier
Symfony SMS Proxima Notifier Bridge
Package info
github.com/symfony/sms-proxima-notifier
Type:symfony-notifier-bridge
pkg:composer/symfony/sms-proxima-notifier
8.2.x-dev
2026-08-13 16:46 UTC
Requires
- php: >=8.4.1
- symfony/http-client: ^7.4|^8.0
- symfony/notifier: ^7.4|^8.0
This package is auto-updated.
Last update: 2026-08-20 15:18:42 UTC
README
Provides SMS Proxima integration for Symfony Notifier.
DSN example
SMS_PROXIMA_DSN=sms-proxima://TOKEN@default?from=FROM
where:
TOKENis your SMS Proxima API tokenFROMis the sender name shown on the recipient's phone, 11 characters at most
Options
use Symfony\Component\Notifier\Bridge\SmsProxima\SmsProximaOptions; use Symfony\Component\Notifier\Message\SmsMessage; $sms = new SmsMessage('+33612345678', 'Hello!'); $sms->options((new SmsProximaOptions()) ->sandbox(true) // test mode, nothing is sent and no credit is used ->stop(false) // disable the STOP mention, transactional messages only ->timeToSend('2026-12-25 10:00') // schedule the message ->idempotencyKey('unique-uuid-here') // prevent duplicate sends ); $texter->send($sms);
See SMS Proxima documentation at https://sms-proxima.com/api-sms
Sponsor
This package is looking for a backer.
Help Symfony by sponsoring its development!