Download the PHP package sendwithus/api without Composer
On this page you can find all versions of the php package sendwithus/api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package api
sendwithus_php
Sendwithus PHP Client
Status
Requirements
curl library must be installed and enabled in php.ini
Install it via Composer
Add it to your composer.json
Then install it with
composer install
Getting started
Emails
Get emails
Get specific template
Create emails
Create new email
We validate all HTML content
Create new email template version
We validate all HTML content
Update email version
We validate all HTML content
Send emails
NOTE - If a customer does not exist by the specified email (recipient address), the send call will create a customer.
Send Examples
Send request with REQUIRED parameters only
Send request with REQUIRED and OPTIONAL parameters
Send an email with multiple CC/BCC recipients
Send an email with a dynamic tag
Send specific version of an email
Send email with an inline image attachment
Send email with an inline encoded image attachment
Send email with attachments
Render templates
Example:
Get a Specific Email's Log
Example
Response
Resend a Specific Email from Log
Example
Response
Drip Unsubscribe
Drip Unsubscribe Example
Drips 2.0
List Drip Campaigns
List all drip campaigns for the current profile
Example
Response
Start on Drip Campaign
Starts a customer on the first step of a specified drip campaign
Example
Response
Remove from Drip Campaign
Deactivates all pending emails for a customer on a specified drip campaign
Example
Response
List Drip Campaign Details
Show all the steps and other information in a specified campaign
Example
Response
Customers API
Create Customer
Example
Update Customer
Example
Delete Customer
Example
List Customer Logs
List all customer logs
Example
Batch API
Batch requests together to be run all at once.
Usage
Create a batch_api object by calling start_batch()
.
Do any request you would do normally with the API but on the batch_api object.
Execute all commands at once by calling execute()
on the object.
Example
Canceling Batch Request
Sometimes it is necessary to cancel all the api requests that have been batched, but not yet sent.
To do that, use cancel()
:
Example
Once you have canceled a batch, you can continue to use the batch to make more requests.
Tests
Running Unit Tests
Make sure to have phpunit installed (http://phpunit.de/) and run the following from the root directory
Troubleshooting
General Troubleshooting
- Enable debug mode
- Make sure you're using the latest PHP client
- Make sure
data/ca-certificate.pem
is included. This file is required - Capture the response data and check your logs — often this will have the exact error
Enable Debug Mode
Debug mode prints out the underlying cURL information as well as the data payload that gets sent to Sendwithus. You will most likely find this information in your logs. To enable it, simply put "DEBUG" => true
in the optional parameters when instantiating the API object. Use the debug mode to compare the data payload getting sent to sendwithus' API docs.
Response Ranges
Sendwithus' API typically sends responses back in these ranges:
- 2xx – Successful Request
- 4xx – Failed Request (Client error)
- 5xx – Failed Request (Server error)
If you're receiving an error in the 400 response range follow these steps:
- Double check the data and ID's getting passed to Sendwithus
- Ensure your API key is correct
- Make sure there's no extraneous spaces in the id's getting passed
Note: Enable Debug mode to check the response code.