2017 © Pedro Peláez
 

library zf-dkim

DKIM Signer for Zend Mail

image

joepsyko/zf-dkim

DKIM Signer for Zend Mail

  • Saturday, December 17, 2016
  • by joepsyko
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2,500 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 21 % Grown

The README.md

README

Zend Framework DKIM Signer., (*1)

Note, (*2)

I tried to contact the original author of this project, but he ignore me, so I decide to clone the project and continue to improve it., (*3)

I will appreciate every contribution., (*4)

Installation, (*5)

Installation of this module uses composer. For composer documentation, please refer to https://getcomposer.org., (*6)

php composer.phar require joepsyko/zf-dkim, (*7)

Create a ./config/autoload/dkim.global.php and ./config/autoload/dkim.local.php file with the configuration variable values as described in the project .dist files., (*8)

Usage, (*9)

  1. Create a DKIM domain key, (*10)

  2. Configure the DkimSigner using the config.dist file, (*11)

  3. Sign & send, (*12)

I.e. in your Controller:, (*13)

$mail = new \Zend\Mail\Message();
$mail->setBody("Hello world!");
$mail->setFrom('from@example.com');
$mail->addTo('to@example.com');
$mail->setSubject('subject');

// sign message with dkim
$signer = $this->getServiceLocator()->get(\Dkim\Signer\Signer::class);
$signer->signMessage($mail);

// send message
$transport = new \Zend\Mail\Transport\Sendmail();
$transport->send($mail);

, (*14)

That's it., (*15)

The Versions

17/12 2016

dev-master

9999999-dev

DKIM Signer for Zend Mail

  Sources   Download

MIT

The Requires

  • php ^5.6 || ^7.0

 

by Giovanni Iembo

zend framework zf dkim

17/12 2016

v2.0.0

2.0.0.0

DKIM Signer for Zend Mail

  Sources   Download

MIT

The Requires

  • php ^5.6 || ^7.0

 

by Giovanni Iembo

zend framework zf dkim

14/03 2016

v1.0.6

1.0.6.0 https://github.com/fastnloud/zf2-dkim

DKIM Signer for Zend Mail

  Sources   Download

MIT

The Requires

 

zf2 dkim

27/02 2015

v1.0.5

1.0.5.0 https://github.com/fastnloud/zf2-dkim

DKIM Signer for Zend Mail

  Sources   Download

MIT

The Requires

 

zf2 dkim