<form action="mailer.php" method="post" novalidate>
<input value="Your Name" name="NAME" class="autoclear name-newsletter" >
<input value="Your Email" name="EMAIL" class="email-newsletter" >
<input value="Your Phone" name="PHONE" class="phone-newsletter" >
<input type="submit" value="submit" name="subscribe" class="button-newsletter">
<label> * We will not forward your email address to any third party.</label>
</form>
I want to just set up a php to send an email with the information above, not a subscribe
You can use the mail function documented by php here:
http://php.net/manual/en/function.mail.php
Execute the mail function on mailer.php using the post data.
EDIT
This code should work (Place it in mailer.