Download the PHP package kuusamo/plugin-smtp without Composer
On this page you can find all versions of the php package kuusamo/plugin-smtp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download kuusamo/plugin-smtp
More information about kuusamo/plugin-smtp
Files in kuusamo/plugin-smtp
Download kuusamo/plugin-smtp
More information about kuusamo/plugin-smtp
Files in kuusamo/plugin-smtp
Vendor kuusamo
Package plugin-smtp
Short Description SMTP plugin for Kuusamo
License MIT
Homepage https://github.com/kuusamo/plugin-smtp
Package plugin-smtp
Short Description SMTP plugin for Kuusamo
License MIT
Homepage https://github.com/kuusamo/plugin-smtp
Please rate this library. Is it a good library?
Informations about the package plugin-smtp
SMTP Plugin
This plugin adds SMTP email integration to Kuusamo.
Installation
Install into your project using Composer.
composer require kuusamo/plugin-smtp
Usage
Install it in index.php
of your project.
$smtpConfig = new Kuusamo\Plugin\Smtp\SmtpConfig([
'senderAddress' => '[email protected]',
'senderName' => 'Kuusamo',
'senderReplyAddress' => '[email protected]', // optional
'host' => 'smtp.example.com',
'port' => 25,
'username' => 'smtp-user',
'password' => 'smtp-password'
]);
$provider = Kuusamo\Plugin\Smtp\SmtpFactory::create($smtpConfig);
Kuusamo\Vle\Service\Email\EmailFactory::setProvider($provider);
Development
Run the tests
ant
All versions of plugin-smtp with dependencies
PHP Build Version
Package Version
The package kuusamo/plugin-smtp contains the following files
Loading the files please wait ....