Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to send an attachment from temporary directory? When I send the mail I am getting the print_r($_FILES) as

Array ( [file] => Array ( [name] => test.doc 
        [type] => application/msword 
        [tmp_name] => /tmp/php2UaLKE 
        [error] => 0 [size] => 681472 ) 
      ) 

and my error is Unable to locate the following email attachment: /tmp/php2UaLKE/EasyToEat.doc

and my statement like:

$attachment=$_FILES['file']['tmp_name'].'/'.$_FILES['file']['name'];        
$this->email->attach($attachment);

I want to know is it possible to attach an document to mail without uploading that to specified location on the server in codeigniter?

share|improve this question

2 Answers

I actually just did this... Its got a lil more than you need, but it does just that. Writes a file to a temp directory, then emails it.


function send_weekly_report()
    {
        $server_ip = $_SERVER['REMOTE_ADDR'];
        if($server_ip != '127.1.1.1')
        {
            $this->load->model('admin_model');
            $this->load->helper('csv_helper');
            $this->load->helper('file');
            //create CSV Array
            $header = array("Sales Rep", "Client", "Action Taken", "Won or Lost", "Action Why", "Current Vendor", "Comp. Cal Program", "Comp. Cal Date", "Notes", "Time");  
            $data = $this->admin_model->load_week();          
            $output = array_merge(array($header), $data);

            $csv = array_to_csv($output);
            $filename = '/tmp/'.time().".csv";
            if ( ! write_file($filename, $csv))
            {
                 $this->load->library('email');
                $this->email->from('donotreply@email', 'Admin');
                $this->email->to('peter@email.com'); 

                $this->email->subject('Weekly Sales Test FAIL!!!!!');
                $this->email->message('Weekly Report Failed!');   
                $this->email->send();
            }
            else
            {
                 //send email
                 $this->load->library('email');
                $this->email->from('donotreply@email', 'Admin');
                $this->email->to('peter@email.com'); 

                $this->email->subject('Weekly Sales Test');
                $this->email->message('Please find the attached report.');    
                $this->email->attach($filename);
                $this->email->send();

                //echo $this->email->print_debugger();                 
            }

        }
    }
share|improve this answer
I am looking for a code that doesn't need the uploading file to any position. – Nisha haridas May 27 '11 at 3:18

You forgot one thing:

$attachment=$_FILES['file']['tmp_name'].'/'.$_FILES['file']['name'];        
$this->email->attach($attachment);

The file path is the "tmp_name" of your array (not with "name").
Try this:

$this->email->attach($_FILES['file']['tmp_name']);

Hope this helps...

share|improve this answer
Here I am getting the mail with attachment name phpa23mPB. But when I save that, I can't open that file. – Nisha haridas May 27 '11 at 3:17
1  
Try to move the file to another destination. move_uploaded_file($_FILES["file"]["tmp_name"], 'path/to/directory/' . $_FILES["file"]["name"]);. Then you should be able to use the file. – hoferm May 27 '11 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.