https://github.com/fullpipe/riverline-spamassassin
Simple lib to get SpamAssassin score and report for an Email.
https://github.com/fullpipe/riverline-spamassassin
Last synced: 5 months ago
JSON representation
Simple lib to get SpamAssassin score and report for an Email.
- Host: GitHub
- URL: https://github.com/fullpipe/riverline-spamassassin
- Owner: fullpipe
- License: other
- Fork: true (rcambien/riverline-spamassassin)
- Created: 2014-10-06T07:17:33.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-06T07:40:19.000Z (over 11 years ago)
- Last Synced: 2025-05-29T00:11:25.433Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 88.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# README
## What is Riverline\SpamAssassin
``Riverline\SpamAssassin`` is a simple lib to get SpamAssassin score and report for an Email.
## Requirements
* PHP 5.3
* Guzzle 3.*
## Installation
Add to your `composer.json`:
```json
{
"require": {
...
"fullpipe/spamassassin": "dev-master"
...
}
}
```
## Usage
Currently, only one provider is available : ``PostmarkWebservice``.
It use the Postmark free Spamcheck webservice available here :
http://spamcheck.postmarkapp.com/doc
```php
getScore();
echo $spamAssassin->getReport();
var_dump($spamAssassin->getReportAsArray());
```