glenelkins Posted July 26, 2006 Share Posted July 26, 2006 HiOK so all the things in the world I can do with mail() I just cant figure out how to attach a file to the email sent.Can Anyone tell me the Header information etc that is needed for this. And does the file need uploading before its sent??? Tutorials? I mean good ones not crap ones!cheers Link to comment https://forums.phpfreaks.com/topic/15705-email-attachment-sending/ Share on other sites More sharing options...
poirot Posted July 26, 2006 Share Posted July 26, 2006 It involves modifying the headers. Try to Google for "PHP MAIL ATTACHMENTS"Or try PHP-Mailer or SWIFT - ready made PHP mailers Link to comment https://forums.phpfreaks.com/topic/15705-email-attachment-sending/#findComment-64133 Share on other sites More sharing options...
aladiyat23 Posted July 26, 2006 Share Posted July 26, 2006 This works for me...<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title></title></head><body><?phpif ($_SERVER['REQUEST_METHOD']=="POST"){ $to = "recipient email"; $subject = "Your subject"; $email = $_POST['requiredemail']; $address = $_POST['requiredaddress']; $zip = $_POST['requiredzip']; $mime_boundary="==Multipart_Boundary_x".md5(mt_rand())."x"; $tmp_name = $_FILES['filename']['tmp_name']; $type = $_FILES['filename']['type']; $name = $_FILES['filename']['name']; $size = $_FILES['filename']['size']; $message = " From: $email\n Address: $address\n Zip: $zip\n if (file_exists($tmp_name)){ if(is_uploaded_file($tmp_name)){ $file = fopen($tmp_name,'rb'); $data = fread($file,filesize($tmp_name)); fclose($file); $data = chunk_split(base64_encode($data));} $headers = "From: $email\r\n" . "MIME-Version: 1.0\r\n" . "Content-Type: multipart/mixed;\r\n" . " boundary=\"{$mime_boundary}\""; $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"; $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";if (@mail($to, $subject, $message, $headers)) echo "Thank you your file has been sent";else echo "An error has occured. Please fill out the form and try again"; }} else {?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data" name="form1"><input name="filename" type="file" size="30"/><input name="submit" type="submit" value="Submit"/></form><?php } ?></body></html> Link to comment https://forums.phpfreaks.com/topic/15705-email-attachment-sending/#findComment-64139 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.