How to send an array of javascript to an email either by php or by another technology? [closed]

1

I have a general arrangement that contains several fixes in which I store the information that has been selected by the user of several steps of a quote, which is the following:

var seleccGeneral = [{"Paso 1": selectEmpStar},{"Paso 2": selectEtapa},{"Paso 3": selectServ},{"Paso 4": selectCarac},{"Paso 5": selectCuent},{"Paso 6": selecDatos}];

My question is how all this data is sent to an email? be it half php or other technology.

    
asked by 22.12.2017 в 17:31
source

1 answer

0

The most common in these cases, when you need to send data to the backend (be it Java, PHP, Python, etc.) is to use AJAX.

Check the following links, they can give you an idea of how to solve your problem.

answered by 22.12.2017 в 18:56