-
Notifications
You must be signed in to change notification settings - Fork 53
Managing Suppressions
Vlad-Cosmin Sandu edited this page Apr 9, 2020
·
1 revision
The PostmarkClient
allows you to create, delete (reactivate) or search for Suppressed recipients.
use Postmark\PostmarkClient;
$client = new PostmarkClient("<server token>");
$messageStream = "outbound"; // MessageStream to search for Suppressions [optional - defaults to "outbound"]
$suppressionReason = "HardBounce"; // filter by Suppression reason [optional]
$origin = "Recipient"; // filter by Suppression Origin [optional]
$fromDate = "2020-03-01"; // filter from the specified date [optional]
$toDate = "2020-03-31"; // filter up to the specified date [optional]
$emailAddress = "[email protected]"; // filter by email address [optional]
$result = $client->getSuppressions($messageStream, $suppressionReason, $origin, $fromDate, $toDate, $emailAddress);
use Postmark\PostmarkClient;
use Postmark\Models\Suppressions\SuppressionChangeRequest;
$client = new PostmarkClient("<server token>");
$request = new SuppressionChangeRequest("[email protected]");
$suppressionChanges = array($request);
$messageStream = "outbound";
$result = $client->createSuppressions($suppressionChanges, $messageStream);
Suppressions will be generated with a Customer
Origin and will have a ManualSuppression
reason.
Note: Requests are processed asynchronously and can take a minute until they become active.
use Postmark\PostmarkClient;
use Postmark\Models\Suppressions\SuppressionChangeRequest;
$client = new PostmarkClient("<server token>");
$request = new SuppressionChangeRequest("[email protected]");
$suppressionChanges = array($request);
$messageStream = "outbound";
$result = $client->deleteSuppressions($suppressionChanges, $messageStream);
Only Customer
origin ManualSuppression
suppressions and Recipient
origin HardBounce
suppressions can be reactivated.
Note: Requests are processed asynchronously and can take a minute until they become active.
For more information, please check our Suppressions API Documentation.
The Postmark-PHP client can be installed from Packagist.
For additional information about the capabilities of the Postmark API, see Postmark Developers Documentation.