symfony / esendex-notifier
Symfony Esendex Notifier Bridge
Package info
github.com/symfony/esendex-notifier
Type:symfony-notifier-bridge
pkg:composer/symfony/esendex-notifier
v8.1.0
2026-05-29 05:06 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-06-05 06:49:51 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);
Sponsor
This package is looking for a backer.
Help Symfony by sponsoring its development!