furison/page-one-notifier

There is no license information available for the latest version (1.0.2) of this package.

Symfony Page One sms Notifier Bridge

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bridge

1.0.2 2024-05-07 14:07 UTC

This package is auto-updated.

Last update: 2025-07-07 16:52:04 UTC


README

Provides PageOne integration for Symfony Notifier.

DSN example

PAGE_ONE_DSN=page-one://USERNAME:PASSWORD@default?from=FROM

where:

  • USERNAME is your API Username
  • PASSWORD is your API password
  • FROM is the sender name

See your account info at https://www.pageone.co.uk/login

Installation

  • Clone this repository
  • Add the following config in services:
 services:
   Furison\Notifier\PageOne\PageOneTransportFactory:
       parent: 'notifier.transport_factory.abstract'
           tags: ['texter.transport_factory']
  • Add the following in the notifier.yaml file:
 framework:
   notifier:
       texter_transports:
           page-one: '%env(PAGE_ONE_DSN)%'

Resources