If business email cannot be parsed, continue to home email.

Fixes bug where contacts with only personal email address were not shown in taglist-email
This commit is contained in:
Nathan Gray 2015-09-21 20:03:33 +00:00
parent 8e657aeb0e
commit 0f6c23a5e0

View File

@ -3324,7 +3324,7 @@ class mail_compose
$_rfcAddr=$rfcAddr->first();
if (!$_rfcAddr->valid)
{
break; // skip address if we encounter an error here
continue; // skip address if we encounter an error here
}
$email = $_rfcAddr->mailbox.'@'.$_rfcAddr->host;