All the emails out go to developers email

Not sure if ive missed something blaring obvious but every campaign i send goes to my developer email listed on config.php instead of the members. (IE test subscriber list has 4 members, my developer email sets 4 copies of the newsletter)

I have tried to change the SMTP to another server and same issue. Am I missing something?

After hours of playing I found it.

My config file has the following at the bottom which i must of added while trying to fix my SMTP issues which caused the fault.

$GLOBALS[‘show_dev_errors’] = true;
ini_set(‘display_errors’, 1);
ini_set(‘display_startup_errors’, 1);
error_reporting(E_ALL);
$developer_email = ‘****dev email address ****’;
$GLOBALS[‘show_dev_errors’] = true;

All fixed