Can someone help with code to submit form directly to an email address
Can someone help me with this please. Trying to embed html into the body of an email with this form. I need them to be able to click "submit" and the results be send directly to my email (or somewhere else only I can access). I could also use help with sending an email with the html in the body rather than as an attachment. This is my code:
<form method="post" action=action="form-to-email.php">
<div class="ax-border name ">
<input type="text" id="name" class="si-text-field form-textbox " placeholder="Full name">
</div>
</label>
<div class="ax-border phone ">
<input type="text" id="phone" form-textbox"
placeholder="Phone number">
<input type="submit" value="Submit"/>
</form>
<?php$to="ryanmandree@gmail.com";?>
I appreciate any and all help.
Thank you
