Ben php mail () işlevini kullanarak e-posta gönderme sorunları yaşıyorum. Ben başka bir web hosting şirketi bunun bir özdeş kopyası var ve orada çalışıyor çünkü php script ben eserler var biliyorum.
Ben web hosting şirketi kendisi ile ilgisi olduğunu düşünüyorum. Sizin herhangi bir sipariş ben o iş yapmak için ne yapmak gerekir biliyor musunuz? Ben yüklemek için bunları söylemem gereken bir şey var mı? Ben Apache üzerinde çalışan düşünüyorum.
Thanks, Amit
Açıklama amaçlı, burada posta yazısıdır.
<?php
$to = 'my@email.com';
$subject = 'Contact from your website';
$message =
'Below are details from the Contact Us Form ' . "\n\n" .
'Name: ' . $_REQUEST['name'] . "\n\n" .
'Telephone Number: ' . $_REQUEST['phone'] . "\n\n" .
'E-mail address: ' . $_REQUEST['email'] . "\n\n" .
'Comments: ' . $_REQUEST['comments'];
$email = $_REQUEST['email'];
$headers = 'From: ' . $email . "\r\n" .
'Reply-To: ' . $email . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$headers .= "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/plain; charset=ISO-8859-1";
//SPAM CHECK
$str = $_REQUEST['spam'];
$strE = $_REQUEST['email'];
if( $str != "10" || $strE == "")
{
echo "<div align='center' style='color:red'>One or more of the form fields were incorrect, you will be redirected to the contact page within 3 seconds.</div>";
?><meta http-equiv="refresh" content="3;URL=http://engineercreativity.com/samples/biz/contact"><!-- EDIT THIS -->
<?php
} else {
mail ($to, $subject, $message, $headers);
?>
<meta http-equiv="refresh" content="0;URL=http://engineercreativity.com/thankyou.html"> <!-- EDIT THIS AS WELL -->
<!--
<div class="text" align="center" style="text-align: center; color: green;">
<br/>
Thank you for contacting us!
<br/>
The message was succesfully sent!
</div>
-->
<?php
}
?>