11.4. 使用不同的Transport对象

如果想使用不同的连接发送不同的邮件, 你也可以不预先调用setDefaultTransport()而 直接将Transport对象传递给send(). 被传递的transport对象会在实际的send()调用中 覆盖缺省的transport:

例 11.4. 使用不同的Transport对象

<?php
require_once 'Zend/Mail.php';
$mail = new Zend_Mail();
// build message...
require_once 'Zend/Mail/Transport/Smtp.php';
$tr1 = new Zend_Mail_Transport_Smtp('[email protected]');
$tr2 = new Zend_Mail_Transport_Smtp('[email protected]');
$mail->send($tr1);
$mail->send($tr2);
$mail->send();  // use default again
?>   
[注意] 注意
额外的 transport 可以通过应用 Zend_Mail_Transport_Interface 接口来实现.