Jump to content

help me on this mail form


mirosoft1

Recommended Posts

i have an email form sending mail on junk and bulk i want to send to inbox what i can do????

it is the code

<?php

$to = "[email protected]";

$subject = "Contact Us";

$email = $_REQUEST['email'] ;

$message = $_REQUEST['message'] ;

$headers = "From: $email";

$sent = mail($to, $subject, $message, $headers) ;

if($sent)

{print "Your mail was sent successfully"; }

else

{print "We encountered an error sending your mail"; }

?>

 

Link to comment
https://forums.phpfreaks.com/topic/86273-help-me-on-this-mail-form/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.