0
I own a form where the fields name=""
has different values between [ ]
because of an API I’m using. I was wondering how I can get this value from input to send to an e-mail?
<form id="msform" method="post" action="send.php" enctype="multipart/form-data">
<input id="nome_completo" name="curriculo[nome_completo]" minlength="5" type="text" class="form-control" placeholder="Nome Completo*">
</form>
I managed to do with Ajax, but as I have an upload field I did not know how to send the form along with the email upload using $("#send"). click(Function(){
– Jvs Corrêa