Hi,

 

I use \Zend\Mail\Transport\Smtp configured like this:



$transport = new \Zend\Mail\Transport\Smtp(

    new \Zend\Mail\Transport\SmtpOptions(

        array(

        'name'              => 'smtp.xxx.de',

        'host'              => 'smtp.xxx.de',

        'connection_class'  => 'login',

        'connection_config' => array(

            'username' => 'myUsername',

            'password' => 'myPassword'

        )

    )));

 

$transport->send($message);

 

If I send one mail everything works fine, if I use a loop with only two
messages the following error occured:

http://pastebin.com/66dMGHr7

 

Please notice the Notice at the end.

 

Someone has an idea?

 

Greetings

 

Marc

Reply via email to