bcismariu / ongage-php
Simple PHP wrapper for Ongage API
Installs: 546
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/bcismariu/ongage-php
Requires
- guzzlehttp/guzzle: ~6.0
This package is auto-updated.
Last update: 2025-10-13 07:58:00 UTC
README
Ongage is a vendor agnostc email marketing platform.
This is a simple PHP implementation of the API calls.
Installation
Update your composer.json
file
{ "require": { "bcismariu/ongage-php": "0.*" } }
Run composer update
Usage
use Bcismariu\Ongage\Ongage; $ongage = new Ongage('USERNAME', 'PASSWORD', 'ACCOUNT_CODE'); $ongage->useList('YOUR_LIST_ID')->addContact([ 'email' => 'contact.email@domain.com', 'name' => 'First Contact' ]);
Read the official API for more details regarding parameters and responses.
Contributions
This is a very basic implementation that can only handle email validations. Any project contributions are welcomed!