I'm trying to use the EnvelopeListener to override the email used for sending in dev mode.
Unfortunately the SendgridApiTransport uses the original email and not the envelope to get the recipients, meaning it still send emails to the original recipient.
$personalization = [
'to' => array_map($addressStringifier, $email->getTo()),
'subject' => $email->getSubject(),
];