$testing_recipient_email_list = str_replace('@', "+{$recipient}@", $testing_recipient_email); code example
Example 1: php replace
str_replace ($search, $replace, $subject);
Example 2: replace all numbers in string php
$words = preg_replace('/[0-9]+/', '', $words);