seeuletter-php
, (*1)
Seeuletter.com PHP Client is a simple but flexible wrapper for the Seeuletter.com API. See full Seeuletter.com documentation here. For best results, be sure that you're using the latest version of the Seeuletter API and the latest version of the PHP wrapper., (*2)
Table of Contents
Getting Started
Here's a general overview of the Seeuletter services available, click through to read more., (*3)
Please read through the official API Documentation to get a complete sense of what to expect from each endpoint., (*4)
Registration
First, you will need to first create an account at Seeuletter.com and obtain your Test and Live API Keys., (*5)
Once you have created an account, you can access your API Keys from the API keys Panel., (*6)
Installation
The recommended way to install Seeuletter.com PHP Client is through Composer., (*7)
// Install Composer
curl -sS https://getcomposer.org/installer | php
// Add Seeuletter.com PHP client as a dependency
composer require seeuletter/seeuletter-php
After installing, you need to require Composer's autoloader:, (*8)
require 'vendor/autoload.php';
Letters
Create a new Letter
'Seeuletter',
'address_line1' => '30 rue de rivoli',
'address_line2' => '',
'address_city' => 'Paris',
'address_country' => 'France',
'address_postalcode' => '75004'
);
$letter = $seeuletter->letters()->create(array(
'to' => $to_address,
'source_file' => '@test.pdf',
'description' => 'Test Letters',
'color' => 'bw',
'source_file_type' => 'file',
'postage_type' => 'verte'
));
print_r($letter);
?>
Create a new Electronic Letter
'Erlich',
'last_name' => 'Dumas',
'company' => 'Seeuletter',
'email' => 'seeuletter@example.com'
);
$letter = $seeuletter->letters()->createElectronic(array(
'to' => $to_address_electronic,
'source_file' => 'This is the electronic letter attached document',
'source_file_type' => 'html',
'description' => 'Test Electronic Letters',
'content' => 'Please review the attached documents',
'postage_type' => 'lre'
));
print_r($letter);
?>
Get all Letters
letters()->all();
print_r($letters);
?>
Get a specific Letter
letters()->get('LETTER_ID');
print_r($letter);
?>
Accounts
Create a new account for the company
accounts()->create(array(
'email' => "msb.partner@example.com",
'name' => "Erlich Bachman",
'phone' => "+33104050607",
'company_name' => "MSB Partner from PHP Wrapper",
'address_line1' => '30 rue de rivoli',
'address_line2' => '',
'address_city' => 'Paris',
'address_country' => 'France',
'address_postalcode' => '75004'
));
print_r($account);
?>
Update the account company email
accounts()->updateEmail("COMPANY_ID_HERE", "msb.partner.new@example.com");
?>
Invoices
List all invoices for a company
invoices()->all();
print_r($letters);
?>
Get a specific invoice
invoices()->get('INVOICE_ID');
print_r($letter);
?>
Examples
We've provided various examples for you to try out here., (*9)
=======================, (*10)
Copyright © 2017 Seeuletter.com, (*11)
Released under the MIT License, which can be found in the repository in LICENSE.txt
., (*12)