Multiple recipients seperate by multiple newline characters
-
Hi,
another issue I experienced is that mails that I attempt to resend that were intended for multiple recipients seem to fail. Reason being is that they have multiple newline characters as an delimiter between recipients instead of just a plain comma.
In WPML_Email_Resender.php I added the following which worked.
$to = $mail->get_receiver();
$to = str_replace([“\\n”, ‘ ‘], [”, ”], $to);Regards,
Sebastian
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Multiple recipients seperate by multiple newline characters’ is closed to new replies.