20.8. Nastavenie hranice MIME
Ak má e-mail viac častí oddeľujú sa pomocou hranice ktorá sa generuje náhodne. Pomocou metódy
setMimeBoundary()
je možné nastaviť vlastnú MIME hranicu, napríklad:
Example 20.7. Nastavenie hranice MIME
<?php
require_once 'Zend/Mail.php';
$mail = new Zend_Mail();
$mail->setMimeBoundary('=_' . md5(microtime(1) . $someId++);
// build message...
?>