Skip to content

SSL Wireless

Integration with SSL Wireless.

BARTA_SSL_TOKEN=your-api-token
BARTA_SSL_SENDER_ID=your-sender-id
BARTA_SSL_CSMS_ID=optional-csms-id
Barta::driver('ssl')
->to('01712345678')
->message('Hello from SSL!')
->send();

SSL Wireless uses a different endpoint for bulk. Barta handles this automatically:

Barta::driver('ssl')
->to(['01712345678', '01812345678'])
->message('Bulk message')
->send();