teon/dkim

Update of angrychimp/php-dkim package.

v0.2.1 2015-10-19 08:14 UTC

This package is not auto-updated.

Last update: 2021-03-19 22:52:41 UTC


README

Installation

composer require teon/dkim

Usage

$msgContent = "...";
$dkimValidator = new \Teon\DKIM\Validator($msgContent);
if (!$dkimValidator->validateBoolean()) {
    throw new Exception("DKIM validation FAILED!");
}

Changelog

See git history :)