symfony / esendex-notifier
Symfony Esendex Notifier Bridge
 Fund package maintenance! 
 fabpot  
 nicolas-grekas  
 symfony.com/sponsor  
 Tidelift  
Installs: 87 139
Dependents: 1
Suggesters: 0
Security: 0
Stars: 8
Watchers: 3
Forks: 3
Type:symfony-notifier-bridge
pkg:composer/symfony/esendex-notifier
 v8.0.0-BETA1 2025-08-01 16:41 UTC 
 Requires
- php: >=8.4
 - symfony/http-client: ^7.4|^8.0
 - symfony/notifier: ^7.4|^8.0
 
- 8.0.x-dev
 - v8.0.0-BETA1
 - 7.4.x-dev
 - v7.4.0-BETA1
 - 7.3.x-dev
 - v7.3.0
 - v7.3.0-RC1
 - v7.3.0-BETA1
 - 7.2.x-dev
 - v7.2.0
 - v7.2.0-RC1
 - v7.2.0-BETA1
 - 7.1.x-dev
 - v7.1.6
 - v7.1.1
 - v7.1.0
 - v7.1.0-RC1
 - v7.1.0-BETA1
 - 7.0.x-dev
 - v7.0.8
 - v7.0.7
 - v7.0.6
 - v7.0.3
 - v7.0.0
 - v7.0.0-RC1
 - v7.0.0-BETA1
 - 6.4.x-dev
 - v6.4.24
 - v6.4.13
 - v6.4.8
 - v6.4.7
 - v6.4.6
 - v6.4.3
 - v6.4.0
 - v6.4.0-RC1
 - v6.4.0-BETA1
 - 6.3.x-dev
 - v6.3.12
 - v6.3.2
 - v6.3.0
 - v6.3.0-RC1
 - v6.3.0-BETA3
 - v6.3.0-BETA1
 - 6.2.x-dev
 - v6.2.7
 - v6.2.5
 - v6.2.0
 - v6.2.0-RC1
 - v6.2.0-BETA1
 - 6.1.x-dev
 - v6.1.11
 - v6.1.0
 - v6.1.0-RC1
 - v6.1.0-BETA1
 - 6.0.x-dev
 - v6.0.19
 - v6.0.3
 - v6.0.0
 - v6.0.0-RC1
 - v6.0.0-BETA2
 - v6.0.0-BETA1
 - 5.4.x-dev
 - v5.4.45
 - v5.4.40
 - v5.4.39
 - v5.4.38
 - v5.4.35
 - v5.4.21
 - v5.4.19
 - v5.4.3
 - v5.4.0
 - v5.4.0-RC1
 - v5.4.0-BETA2
 - v5.4.0-BETA1
 - 5.3.x-dev
 - v5.3.14
 - v5.3.4
 - v5.3.0
 - v5.3.0-RC1
 - v5.3.0-BETA1
 - 5.2.x-dev
 - v5.2.12
 - v5.2.10
 - v5.2.7
 - v5.2.4
 - v5.2.3
 - v5.2.2
 - v5.2.1
 - v5.2.0
 - v5.2.0-RC2
 - v5.2.0-RC1
 - v5.2.0-BETA3
 - v5.2.0-BETA2
 - v5.2.0-BETA1
 
This package is auto-updated.
Last update: 2025-10-28 09:54:17 UTC
README
Provides Esendex integration for Symfony Notifier.
DSN example
ESENDEX_DSN=esendex://EMAIL:PASSWORD@default?accountreference=ACCOUNT_REFERENCE&from=FROM  where:
EMAILis your Esendex account emailPASSWORDis the Esendex API passwordACCOUNT_REFERENCEis the Esendex account reference that the messages should be sent fromFROMis the alphanumeric originator for the message to appear to originate from
See Esendex documentation at https://developers.esendex.com/api-reference#smsapis
Adding Options to a Message
With an Esendex Message, you can use the EsendexOptions class to add message options.
use Symfony\Component\Notifier\Message\SmsMessage; use Symfony\Component\Notifier\Bridge\Esendex\EsendexOptions; $sms = new SmsMessage('+1411111111', 'My message'); $options = (new EsendexOptions()) ->accountReference('account_reference') // ... ; // Add the custom options to the sms message and send the message $sms->options($options); $texter->send($sms);