I made the contact us form on the web. Connected with the email server (while wearing my email). Script as follows:
$to = "xxxxx@gmail.com" ;
$subject = "From Contact Us";
$nama = $_REQUEST['name'] ;
$email = $_REQUEST['email'] ;
$phone = $_REQUEST['phonenumber'] ;
$pesan = $_REQUEST['message'];
$headers = "From: $nama<$email>";
$message = "[Nama : $nama], [E-mail : $email], [Phone : $phone], [Pesan : $pesan]";
$sent = mail($to, $subject, $message, $headers) ;
if($sent)
{
?>
<script type='text/javascript'>
alert ('Thank you for sending an email to us...');
window.location="http://gmail.com";
</script>
<?php
}
else
?>
<script type='text/javascript'>
alert (message failed to send, please resend!');
window.location="http://gmail.com";
</script>
<?php
?>
in his field of existing html <form method="POST" name="form1" action="actioncontact.php" method='POST'>
have been tried was called, but why the error continues?
Error in question here was fitting already sent to the email server is not complete...
sometimes the phone number does not appear...
sometimes the message does not appear...
when all variables are adjusted...
It’s why we think so?
- Login or Signup Now to post comments

HI, i feel the same way with this issue, because i used mail(); function way back bafeore and its sucks. the best solution in this case is phpmailer. It is a full featured email transfer class for PHP that exposes a much greater range of features than the standard PHP mail() function. i used it not only once but many times and fulfill my needs. seeting up phpmailer is pretty much easy. you can down load it here http://sourceforge.net/projects/phpmailer/ and put it on your project.
how to confgure phpmailer
?>
just call the function sendmail($email, $subject, $body)
instead of mail($to, $subject, $message, $headers) ;
LOL I am missing that fungtion.. Thanks Marjune for the reason being that this is such an informative post.