I have a problem with sending a file and redirect to new page in the same time, now it is working just two ways:
1. Sending a file via sendResponse
2. Redirect to a new page
My code after form successed:
$this->sendResponse(new FileResponse($file));
$this->redirect('this', ['Id' => NULL, 'addAge' => NULL]);
I would like to know how to send a file and also redirect to new page, I tried to make a link to Download Presenter but it didn't work anyway.