yiioverflow / yii2-imap

https://yiioverflow.com
BSD 3-Clause "New" or "Revised" License
41 stars 33 forks source link

Multiple connections #19

Closed s1lver closed 5 years ago

s1lver commented 5 years ago

Hi! I have a need for variability connection. I want to add the ability to specify multiple connections. The connection array can be changed

'connection' => [
    'test1' => [
        'imapPath' => '',
        'imapLogin' => '',
        'imapPassword' => '',
        'serverEncoding'=>'utf-8'
    ],
    'test2' => [
        'imapPath' => '',
        'imapLogin' => '',
        'imapPassword' => '',
        'serverEncoding' => 'utf-8'
    ]
],

and add a new multiConnect parameter (false by default).

'multiConnect' => true