Ideal solution by me would be to move composing and sending e-mail to asynchronous consumer:
$this->orderMailFacade->sendEmail($order); // PlaceOrderFacade::placeOrder()
Composing e-mail in OrderMailFacade::sendEmail() is very problematic because of composing in templates.
Synchronous composing and sending was a few times very shocking for us after our mistakes.