html - Send all data from inputs in a form through email without defining each field -


i have 150+ forms different input ids. need collect data inputs , send them on through email directly without defining fields. see site https://formspree.io/ has feature want know how can implement myself. thank you!

this how site handles form:

<form action="//formspree.io/your@email.com"       method="post">     <input type="text" name="name">     <input type="email" name="_replyto">     <input type="submit" value="send"> </form> 

this allows inputs sent directly given email.

nevermind, got answer.

foreach ($_post $key => $value)      $body .= $key . ' -> ' . $value . '<br>'; 

Comments

Popular posts from this blog

php - Admin SDK -- get information about the group -

dns - How To Use Custom Nameserver On Free Cloudflare? -

Python Error - TypeError: input expected at most 1 arguments, got 3 -