https://github.com/mlocati/mailup-php
A PHP class to manage communications with MailUp servers
https://github.com/mlocati/mailup-php
Last synced: 7 months ago
JSON representation
A PHP class to manage communications with MailUp servers
- Host: GitHub
- URL: https://github.com/mlocati/mailup-php
- Owner: mlocati
- Created: 2013-06-13T13:20:07.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-08T14:38:40.000Z (almost 12 years ago)
- Last Synced: 2025-02-12T08:39:14.872Z (8 months ago)
- Language: PHP
- Size: 190 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
mailup-php
==========A PHP class to manage communications with MailUp servers.
Remarks
-------
You have to enable web services in your MailUp console to use this class.Example
-------
Access parameters are those for the web service (you can get them in your MailUp console).```php
$mailup = new MailUp(
'username', // Your MailUp login for web services (should start with an 'a')
'password', // Your MailUp password for web services
'console url', // The url of your console (well, it's enough its host name,
'console id', // The id of the console. This should be the numbers after the 'a' in the username. If left blank we'll try to detect it.
'', // An optional folder where the class can use for caching some data.
true // Debug enabled?
);var_dump($mailup->GetLists());
var_dump($mailup->GetMessages(1));```
[](https://bitdeli.com/free "Bitdeli Badge")