Hello.
Need send email from arhive. I try use Email service, but arhive mail dont have "from" (field fill at panel).
Need send email from arhive. I try use Email service, but arhive mail dont have "from" (field fill at panel).
$mail = $this->getEntityManager()->getEntity('Email', $id);
$sender->send($mail);
$newMail = $this->getEntityManager()->getEntity('Email');
$newMail->populateFromArray($mail->toArray());
$newMail->set([ 'from' => $fromAddressRecvPDO,
'to' => implode(';', $toAddressesRecvPDO), ]);
$sender->send($newMail);
Comment