Riverline\SpamAssassin
is a simple lib to get SpamAssassin score and report for an Email.
- PHP 5.3
- Guzzle 3.*
Riverline\SpamAssassin
is compatible with composer and any prs-0 autoloader
Currently, only one provider is available : PostmarkWebservice
.
It use the Postmark free Spamcheck webservice available here : http://spamcheck.postmarkapp.com/doc
<?php
use Riverline\SpamAssassin\PostmarkWebservice
$spamAssassin = new PostmarkWebservice();
echo $spamAssassin->getScore($rawEmail);
// Optionally get the full report
echo $spamAssassin->getReport();