php kullanarak e-posta dosya eklemek

4 Cevap php

Ben bir kullanıcı bir dosya konumuna göz atmak için izin vermek benim form üzerinde bir giriş var. fikir onlar sunmaya hazırlanıyor uygulama için bir özgeçmiş ekleyebilirsiniz varlık.

<label class="description" for="element_5">Upload a File </label>
    	<div>
    		<input id="element_5" name="element_5" class="element file" type="file"/>

Benim metin feilds ve dropdowns için i çizgisinde bir şey kullanıyorum

$experince = $_POST["experince"];

ama ben acutall dosyasını istediğiniz yol dizesi istemiyorum. nasıl dosyayı kendisi alabilirim ve nasıl e-postaya eklemek yok

Bonus. doc /. pdf eki sınırlamak için kolay bir yolu var mı?

4 Cevap

Bakmak

Geçenlerde buna benzer bir şey yaptım. Bu önemsiz değildir.

E-posta iletisi çok Mime mesajı olmak zorunda olacak. Siz, dosyayı okumak (base64 kullanarak) kodlamak, sonra doğru noktada e-posta mesajı dizesinde yerleştirecektir.

This looks like a decent tutorial (that I wish I had found before): http://www.texelate.co.uk/blog/send-email-attachment-with-php/

Ama öğretici bazı kaçış sorunları olduğunu unutmayın:

$message . "“nn";

olmalıdır:

$message . "\n\n";

You can also look into the Mail_Mime PEAR package for help: http://pear.php.net/package/Mail%5FMime

Bu şimdiye kadar ne var ama onun değil çalışma

<input id="resumeup" name="resumeup"  type="file"/> 

$_FILES = $_POST["resumeup"];

    		if ((($_FILES["file"]["type"] == "image/gif")
    		|| ($_FILES["file"]["type"] == "image/jpeg")
    		|| ($_FILES["file"]["type"] == "image/pjpeg"))
    		&& ($_FILES["file"]["size"] < 20000))
    		{
    			if ($_FILES["file"]["error"] > 0)
    			{
    				echo "Error: " . $_FILES["file"]["error"] . "<br />";
    			}
    			else
    			{
    				echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    				echo "Type: " . $_FILES["file"]["type"] . "<br />";
    				echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    				echo "Stored in: " . $_FILES["file"]["tmp_name"];
    			}
    		}

Here is what I have done to send a mail with an attachment. Some of the code is mine and some of it has been taken from http://php.net/manual/en/function.mail.php. This code has been tried and tested so, it should work. Also see if sendmail is installed. If on linux ubuntu system try sudo apt-get install sendmail to install it. The best part about this code is that it works for multiple file uploads.

Dosya Adı: index.php

    <?php
    if( $_POST || $_FILES )
    {
            // email fields: to, from, subject, and so on
            // Here 
            $from = "someone@somewhere.com";
            $to = "someone_else@somewhere_else.com";
            $subject = "Mail with Attachment";
            $message = "This is the message body and to it I will append the attachments.";
            $headers = "From: $from";

            // boundary
            $semi_rand = md5(time());
            $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";

            // headers for attachment
            $headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\"";

            // multipart boundary
            $message = "--{$mime_boundary}\n" . "Content-Type: text/plain; charset=\"iso-8859-1\"\n"."Content-Transfer-Encoding: 7bit\n\n" . $message . "\n\n";
            fixFilesArray($_FILES['attachment']);
            foreach ($_FILES['attachment'] as $position => $file) 
            {
                    // should output array with indices name, type, tmp_name, error, size
                    $message .= "--{$mime_boundary}\n";
                    $fp     = @fopen($file['tmp_name'],"rb");
                    $data   = @fread($fp,filesize($file['tmp_name']));
                    @fclose($fp);
                $data = chunk_split(base64_encode($data));
                $message .= "Content-Type: application/octet-stream; name=\"".$file['name']."\"\n"."Content-Description: ".$file['name']."\n" ."Content-Disposition: attachment;\n" . " filename=\"".$file['name']."\";size=".$file['size'].";\n"."Content-Transfer-Encoding: base64\n\n" . $data . "\n\n";
            }
            $message .= "--{$mime_boundary}--";
            $returnpath = "-f" . $from;
            $ok = @mail($to, $subject, $message, $headers, $returnpath);
            if($ok){ return 1; } else { return 0; }
    }
    //This function will correct file array from $_FILES[[file][position]] to $_FILES[[position][file]] .. Very important

    function fixFilesArray(&$files)
    {
            $names = array( 'name' => 1, 'type' => 1, 'tmp_name' => 1, 'error' => 1, 'size' => 1);

            foreach ($files as $key => $part) {
                    // only deal with valid keys and multiple files
                    $key = (string) $key;
                    if (isset($names[$key]) && is_array($part)) {
                            foreach ($part as $position => $value) {
                                    $files[$position][$key] = $value;
                            }
                            // remove old key reference
                            unset($files[$key]);
                    }
            }
    }
    ?>
    <html>
        <body>
            <form method="POST" action="index.php" enctype="multipart/form-data">
                <input type="file" name="attachment[]"><br/>
                <input type="submit">
            </form>
        </body>
    </html>

Bu arada ben biraz yavaş olduğu için sendmail kullanarak için özür dilemek istiyorum. Ben daha iyi bir çözüm göndermek için çalışacağız.