از راهنمایی تون خیلی ممنونم
اما مشکل من حل نشد؛ چون به ایمیلم ارسال نمی شه!!!
هیچ خطایی هم نگرفت و به ok.html رفت.
تمام HTTP_POST_VARS و... رو هم تغییر دادم ولی نشد.
این کل فایلمه:
[PHP]
<?php
// Create Message Text
$form_fields=array_keys($_POST);
$temp="Sender's IP Address : = " . $_SERVER['REMOTE_ADDR'] . "\n";
while($field=array_pop($form_fields)){
if ($field != "To")
$temp.=" $field : = $HTTP_POST_VARS[$field] \n";
}
// Read POST request params into global vars
$from = $_POST['Email'];
$message = $temp;
// Obtain file upload vars
$fileatt = $_FILES['File']['tmp_name'];
$fileatt_type = $_FILES['File']['type'];
$fileatt_name = $_FILES['File']['name'];
$headers = "From: $from";
if (is_uploaded_file($fileatt)) {
// Read the file to be attached ('rb' = read binary)
$file = fopen($fileatt,'rb');
$data = @fread($file,filesize($fileatt));
fclose($file);
// Generate a boundary string
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
// Add the headers for a file attachment
$headers .= "\nMIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";
// Add a multipart boundary above the plain message
$message = "This is a multi-part message in MIME format.\n\n" .
"--{$mime_boundary}\n" .
"Content-Type: text/plain; charset=\"UTF-8\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" .
$message . "\n\n";
// ------ encode the file data
$data = chunk_split(------_encode($data));
// Add file attachment to the message
$message .= "--{$mime_boundary}\n" .
"Content-Type: {$fileatt_type};\n" .
" name=\"{$fileatt_name}\"\n" .
//"Content-Disposition: attachment;\n" .
//" filename=\"{$fileatt_name}\"\n" .
"Content-Transfer-Encoding: ------\n\n" .
$data . "\n\n" .
"--{$mime_boundary}--\n";
}
// Send the message
if (($HTTP_REFERER == 'http://www.DOMAIN.com/st.html') || ($HTTP_REFERER == 'http://DOMAIN.com/st.html')) {
$ww = preg_match_all("@http@i", $message, $temp);
$vv = preg_match_all("@www@i", $message, $temp);
if (max($ww, $vv) < 10) {
@mail("support@DOMAIN.com", $HTTP_POST_VARS[Topic] . " - A Group " . $HTTP_POST_VARS[Product], $message, $headers);
} else {
header("location:https://www.DOMAIN.com/index.html"); die;
}
}
header("location:https://www.DOMAIN.com/ok.html");
?>
[/PHP]
لطفا راهنمایی کنید.