Hello. I receive error when mass importing emails without names.
To import correctly, i need to put ; before email
;email@domain.com
So I need manually edit my list, it is not good.
Please add check something like

<?php
$t=explode(';',$email);
if(count($t)==1)
{
$realname='';
$email=$t[0];
}
?>