Which is the correct way to send a post request inside of a Shopware 6 controller to another shopware controller(not external site, same shop) by using default shopware methods.
I know that curl or file get contents can be used, but are there any default methods?
You can forward the request to another controller like this. You should never to a 'real' POST request to another internal controller, this will add a lot of HTTP overhead and slow down your webshop.
The first parameter is the name/function of the ohter controller you want to call, the second parameter is a named array of the parameters of the other controller.
Source: https://symfony.com/doc/current/controller/forwarding.html