Which of the following code snippets will you use if you want to connect to a Pop3 server using TLS?
<?php
$mail = new Zend_Mail_Storage_Pop3(array('host'
='example.com', 'user' ='user_name',
'protocol_used' = 'tls')); ?>
'connectTo' = 'tls')); ?>
'protocol_used' = 'ssl/tls')); ?>
'ssl' = 'tls')); ?>
Submit