Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Send email from html form without php [closed]

Tags:

Is there a service that allows you to post a form to it from an html page (my php mail isn't working temporarily and I need a quick solution) and it will automatically send an email with specified content to a specified address?

The address it comes from is insignificant.

like image 710
Max Hudson Avatar asked Jul 30 '13 02:07

Max Hudson


1 Answers

Check out formspree.

https://github.com/asm-products/formspree

For action you simply put:

<form action="http://formspree.io/[email protected]" method="post"> <input type="text" name="name"> <input type="email" name="_replyto"> <input type="submit" value="Send"> 

After verifying your email after the first send this will email you the contents of the form. One thing to keep in mind is that this will take the input names. If you do not include input names it won't send you that form field.

like image 150
Bhetzie Avatar answered Oct 20 '22 19:10

Bhetzie