2017 © Pedro Peláez
 

library mahana-mailinator-api

PHP wrapper for the Mailinator.com API

image

jrmadsen67/mahana-mailinator-api

PHP wrapper for the Mailinator.com API

  • Friday, October 16, 2015
  • by jrmadsen67
  • Repository
  • 1 Watchers
  • 4 Stars
  • 2,942 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 20 % Grown

The README.md

MahanaMailinatorAPI

Software License, (*1)

Php Mailinator API library, (*2)

Token

Create a Mailinator account, login, and find your token at https://www.mailinator.com/settings.jsp, (*3)

Requirements

You need to have the cURL-extension installed on your server. PHP 5.4 will suffice., (*4)

Installation

composer require jrmadsen67/mahana-mailinator-api, (*5)

Usage

$token = 'whateveryourtokenisfromabove';

$mahanaMailinator = new jrmadsen67\MahanaMailinatorAPI\MahanaMailinatorAPI($token);

//Get messages in inbox//

$inbox = 'myinbox';

$messages = $mahanaMailinator->fetchInbox($inbox);

//Get a message//

$message = $mahanaMailinator->fetchMail($msgId);

//Delete a message//

$status = $mahanaMailinator->deleteMail($msgId);

The Versions

16/10 2015

dev-master

9999999-dev

PHP wrapper for the Mailinator.com API

  Sources   Download

MIT

The Requires

  • php >=5.2.1

 

by Jeffrey R. Madsen