I want to validate a string which can be an email or multiple emails separated by commas.
For example:
bill.gates@hotmail.com -> TRUE bill -> FALSE
How about splitting the string into an array and looping through it passing just one e-mail address at a time?