twigEnvironment = $twigEnvironment; } public function doSomething(...) { // Appeler Twig pour générer le rendu d'un template $html = $this->twigEnvironment->render( 'email/newOrder.html.twig', [ nom => 'Rintintin' ] ); ... } }