<?php

error_reporting(-1);

$regexp = '/([a-zA-Z0-9_+.-]+)@([0-9a-z.-]+)/';
$text = 'fiejifewif anon@mail.ru, fesf: 124 @feef ivan@02.com ';

$email = array();

preg_match_all($regexp, $text, $email);

var_dump($email[0]);