readme updated

This commit is contained in:
Clivern 2017-08-15 16:00:33 +02:00
parent 95ee63eeb6
commit 27fe23a50f

View file

@ -27,8 +27,14 @@ After adding the package as a dependency, Please read the following steps:
```php
include_once dirname(__FILE__) . '/vendor/autoload.php';
$connection = new Clivern\Imap\Core\Connection("imap.gmail.com", "993", "test@clivern.com", "my_password", "/ssl", "INBOX");
$connection = new Clivern\Imap\Core\Connection(
"imap.gmail.com",
"993",
"test@clivern.com",
"my_password",
"/ssl",
"INBOX"
);
$connection->connect();
```