|
|
|
Radio Frequency Machine |
|
Medium Frequency Solid State Machine |
|
Portable High Frequency Solid State Machine |
|
Vertical Scanner |
|
Horizontal Scanner |
|
 |
|
|
| |
|
|
 |
|
 |
";
// generate a random string to be used as the boundary marker
$mime_boundary="==Multipart_Boundary_x".md5(mt_rand())."x";
// store the file information to variables for easier access
$tmp_name = $_FILES['filename']['tmp_name'];
$type = $_FILES['filename']['type'];
$name = $_FILES['filename']['name'];
$size = $_FILES['filename']['size'];
$name=$_REQUEST['name'];
$cname=$_REQUEST['cname'];
$email=$_REQUEST['email'];
$address=$_REQUEST['address'];
$city=$_REQUEST['city'];
$state=$_REQUEST['state'];
$postal=$_REQUEST['postal'];
$country=$_REQUEST['country'];
$phone=$_REQUEST['phone'];
$fax=$_REQUEST['fax'];
$process=$_REQUEST['process'];
//$attatch=$HTTP_POST_VARS[attatch];
$sample=$HTTP_POST_VARS['sample'];
$heated=$HTTP_POST_VARS['heated'];
$depth=$HTTP_POST_VARS['depth'];
$weight=$HTTP_POST_VARS['weight'];
$method=$HTTP_POST_VARS['method'];
$ctime1=$HTTP_POST_VARS['ctime1'];
$htime1=$HTTP_POST_VARS['htime1'];
$tmpr1=$HTTP_POST_VARS['tmpr1'];
$ctime=$HTTP_POST_VARS['ctime'];
$htime=$HTTP_POST_VARS['htime'];
$tmpr=$HTTP_POST_VARS['tmpr'];
$csystem=$HTTP_POST_VARS['csystem'];
$job=$HTTP_POST_VARS[job];
$scanner=$HTTP_POST_VARS['scanner'];
$msg=$HTTP_POST_VARS['msg'];
$csystem=$HTTP_POST_VARS['csystem'];
// here we'll hard code a text message
// again, in reality, you'll normally get this from the form submission
$message = "
|
Name |
$name |
|
Organization
Name |
$cname |
|
Email
ID |
$email |
|
Address |
$address |
|
City |
$phone |
|
State/Province |
$state |
|
Postal Code |
$postal |
|
Country |
$country |
|
Phone No |
$phone |
|
Fax |
$fax |
|
Select Your Process |
$process |
|
Attach a File or any Photo
|
$attatch |
|
Are You Sending any Sample |
$sample |
|
|
Performance Information |
|
|
Material to be Heated |
$heated |
|
Hardness Depth |
$depth |
|
Weight |
$weight Kgs |
|
Present Result |
|
Method |
$method |
|
Cycle Time |
$ctime1 |
|
Heating Time |
$htime1 |
|
Temperature Range |
$tmpr1 |
|
|
Desired Result |
|
Cycle Time |
$ctime |
|
Heating Time |
$htime |
|
Temperature |
$tmpr |
|
|
|
Plant Utilities |
|
Do You need Cooling System. |
|
$csystem |
No |
|
|
Do You need any fixture
for Job. |
Yes |
$job> |
|
|
Do You need a
Vertical/Horizontal Scanner. |
Yes |
$scanner |
|
|
|
What are most important point for
us to remember while you are heating. |
|
$msg |
|
|
Here is your file: $name \n From: $nimi \n Toimi: $toimi \n Puhelinnumero: $Puhelinnumero \n Sahkoposti: $fromemail
";
// if the upload succeded, the file will exist
if (file_exists($tmp_name)){
// check to make sure that it is an uploaded file and not a system file
if(is_uploaded_file($tmp_name)){
// open the file for a binary read
$file = fopen($tmp_name,'rb');
// read the file content into a variable
$data = fread($file,filesize($tmp_name));
// close the file
fclose($file);
// now we encode it and split it into acceptable length lines
$data = chunk_split(base64_encode($data));
}
// now we'll build the message headers
$headers = "From: $from\r\n" .
"MIME-Version: 1.0\r\n" .
"Content-Type: multipart/mixed;\r\n" .
" boundary=\"{$mime_boundary}\"";
// next, we'll build the message body
// note that we insert two dashes in front of the
// MIME boundary when we use it
$message = "This is a multi-part message in MIME format.\n\n" .
"--{$mime_boundary}\n" .
"Content-Type: text/plain; charset=\"iso-8859-1\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" .
$message . "\n\n";
// now we'll insert a boundary to indicate we're starting the attachment
// we have to specify the content type, file name, and disposition as
// an attachment, then add the file content and set another boundary to
// indicate that the end of the file has been reached
$message .= "--{$mime_boundary}\n" .
"Content-Type: {$type};\n" .
" name=\"{$name}\"\n" .
//"Content-Disposition: attachment;\n" .
//" filename=\"{$fileatt_name}\"\n" .
"Content-Transfer-Encoding: base64\n\n" .
$data . "\n\n" .
"--{$mime_boundary}--\n";
// now we just send the message
if (@mail($to, $subject, $message, $headers,$emessage))
echo "Enquiry Sent Sucessfully.";
else
echo "Failed to send";
}
} else {
?>
Send an e-mail with an attachment:
|
|
nhg |