// uso: $body=unbugmail($body); function unbugmail($body) { $x=substr($body,1023,1); $i=1; while (strlen($x)) { $body=substr_replace($body,"$x$x",1024*$i-1,1); $i++; $x=substr($body,1024*$i-1,1); } return $body; }