you missed this part from the thread i linked to:
In universal email, when you bind to the email address form element, it will include the "[]" in the binding code:<?php echo((isset($_POST["toAddresses[]"]))?$_POST["toAddresses[]"]:"") ?>these should be removed from the binding code:
<?php echo((isset($_POST["toAddresses"]))?$_POST["toAddresses"]:"") ?>
on your page, find the following line of code:
$RecipArray[$CurIndex ][] = "".((isset($_POST["toAddresses[]"]))?$_POST["toAddresses[]"]:"") ."";
and change it to:
$RecipArray[$CurIndex ][] = "".((isset($_POST["toAddresses"]))?$_POST["toAddresses"]:"") ."";

