</code></pre>
/* Generate some boundaries for the mime-mails and make them interesting for geeks to look at */
$boundary_hash = substr(md5(time()), 0,10);
switch (rand(0,7)) {
case 0 : $this->boundaries = array('We-come-in-peace','Dont-run-we-are-your-friends'); break;
case 1 : $this->boundaries = array('Use-the-force-Luke', 'Im-not-looking-for-a-friend---Im-looking-for-a-Jedi-master'); break;
case 2 : $this->boundaries = array('Your-culture-will-adapt-to-service-us', 'Resistance-is-futile'); break;
case 3 : $this->boundaries = array('we-are-not-here-because-we-are-free', 'we-are-here-because-we-are-not-free'); break;
case 4 : $this->boundaries = array('The-best-thing-about-me-is-that-there-is-so-many-of-me', 'You?-Yes-me----me,-me,-me----Me-too'); break;
case 5 : $this->boundaries = array('Open-the-door-please-Hall', 'Im-sorry-Dave-Im-afraid-I-cant-do-that'); break;
case 6 : $this->boundaries = array('A-xenomorph-may-be-involved', 'how-could-they-cut-the-power'); break;
case 7 : $this->boundaries = array('The-Force-will-be-with-you--always', 'I-felt-a-great-disturbance-in-the-Force'); break;
}
<pre><code>