SimpleInvoices Group Forum › Forums › Fearless359 SimpleInvoices Discussion Group › Recurring invoices › Reply To: Recurring invoices
January 19, 2021 at 5:03 am
#1322
jorge
Participant
Hello, I managed to make it work:
In Inc/Claz/Email.php
function setTo($to)
is assuming that $to is a string, but it has already been converted to array in previous function at Cron.php (getEmailSendAddresses).
To make it work I added $to = implode(“;”, $to); to the begining of setTo function:
public function setTo($to)
{
$to = implode(";", $to);
Recent Comments