mail not getting sent
-
i have a custom form in my page below is the code, on click submit it does nothing just refreshes page but i never recieve the mail
<?php
if(isset($_POST[‘submit’])){
$toemail=”[email protected]”;
$fromemail=$_POST[’email’];
$fromname=$_POST[‘name’];
wp_mail($toemail,$fromemail, “mail from” .$fromname);
?>
<form action=”#” method=”POST”>
<input type=”name” id=”inputName” placeholder=”Name”>
<input type=”email” id=”inputEmail” placeholder=”Email”>
<button type=”submit”>SUBMIT</button>
</form>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘mail not getting sent’ is closed to new replies.