ZF-3488: Missing closing bracket in "Example 25.9. Changing the MIME Boundary"
Description
The code sample at the on-line docs for 1.5.2 on "Example 25.9. Changing the MIME Boundary" is broken:
$mail->setMimeBoundary('=_' . md5(microtime(1) . $someId++);
Should be:
$mail->setMimeBoundary('=_' . md5(microtime(1) . $someId++));
Comments
Posted by old of Satoru Yoshida (yoshida@zend.co.jp) on 2008-07-02T08:33:47.000+0000
Solved in SVN r9879
Posted by Wil Sinclair (wil) on 2008-09-02T10:39:00.000+0000
Updating for the 1.6.0 release.