is it possible to fire the execution of a script in the background via click?
I am within a CMS/CRM and want to trigger an external file to load when clicking on a certain link within the CMS/CRM.
e.g. activate the php.mailer to send an email.
It seems to be a security issue when using (cross domain vulnerability?)
foobar.onload()
and if it weren't, it would not execute the file in the background. I have seen that it was solved in python using with
subprocessor()
.
The external script would be on my domain though and not touch the CMS / CRM.
Any ideas?