Key Takeaways
- Symfony notifications via Android SMS gateway: implement a Notifier transport (or HttpClient) that POSTs Bearer JSON — not a first-party Symfony SMS SDK package from us.
- Alert SMS still needs a charged, paired phone and operator airtime.
- Priced by devices and SMS send volume. You use your own phone and operator SMS credit.
- Free 300 SMS lifetime is for canaries — not pager storms.
- Idempotency-Key on each notification send.
- Developer Center owns live fields.
Symfony SMS notifications on an Android device gateway mean your Notifier/Messenger stack calls HTTPS; the handset delivers. Related: Symfony order alerts. Transactional SMS. Symfony Notifier docs.
Priced by devices and SMS send volume. You use your own phone and operator SMS credit.
Wiring
notify()without a live phone is theatre — Symfony will happily queue SMS into a drawer with 3% battery.
Symfony Notifier → HTTPS SMS
Custom SMS transport: map recipient + body, POST /api/v1/messages. Confirm fields in Developer Center.
Channel vs transport reality
| Layer | Symfony | Gateway reality |
|---|---|---|
| Notifier | Channel API | Your transport class |
| HTTP | HttpClient | 2xx = accept |
| Radio | — | Android + SIM + airtime |
| DLR | Optional webhook | Async status |
REST client, not an official SDK
Composer packages you write are fine. Do not brand them as a complete official SMS Gateway Symfony SDK. Language samples elsewhere are recipes — PHP samples.
Messenger and idempotency
Send from workers; retry with the same Idempotency-Key. Do not double-page on transport blips.
Android device for alerts
Keep the app awake; isolate from bulk — multi-device.
Related reading
Checklist
- Keys in env / secrets.
- Custom transport tested.
- Idempotency-Key set.
- Alert SIM funded.
- No official SDK claim.
- DLR optional via webhook.
Next steps
Canary a staff alert, then size devices + volume.
Related product pages
Jump to the live product docs for this topic—not another long-form article.
- SMS API documentationLive endpoint reference
- device and SMS volume pricingPlans and allowances
- Android SMS gateway product guideDefinition, product, and how to buy
- download the Android gateway appGet the APK





