When submitting the form, I want to send my visitor to an external url to do something, but I hope that he continues to browse my site. In html, I would give it this opportunity with href = "http://www.example.com" target = "_ blank".
But I can not find how to do this when I do this:
$this->_helper->redirector->gotoUrl('http://www.example.com');
inside my action with the controller. Nothing found on Google, documentation or SO. Is it just not possible?
source share