symfony/sms-proxima-notifier

Symfony SMS Proxima Notifier Bridge

Maintainers

Package info

github.com/symfony/sms-proxima-notifier

Homepage

Type:symfony-notifier-bridge

pkg:composer/symfony/sms-proxima-notifier

Transparency log

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

8.2.x-dev 2026-08-13 16:46 UTC

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:

  • TOKEN is your SMS Proxima API token
  • FROM is 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!

Resources