Welcome Guest, Not a member yet? Register   Sign In
Email class using smtp protocol. pls help
#1

[eluser]eironotics[/eluser]
scenario
i am developing an intranet application that can generate email alert to any recipient.
Our mail server is located in a different machine call it 192.168.20.15 and I am using a Exchange Mail Server.

Problem:
I recieve this kind of an error:
Fatal error: Maximum execution time of 60 seconds exceeded in F:\xampp\htdocs\CodeIgniter\system\libraries\Email.php on line 1704

whats this suppose to mean?
any ideas? please help..


heres my code at controller


Code:
$this->load->library('email');
        $this->load->helper('email');
    
        $config['protocol'] = "smtp";
        $config['smtp_host'] = "192.168.20.15";
        $config['smtp_user'] = "[email protected]";
        $config['smtp_pass'] = "password";
        $config['smtp_port'] = "25";
        $config['charset'] = "iso-8859-1";
        $config['wordwrap'] = TRUE;
        
        $this->email->initialize($config);
        $this->email->to('[email protected]');
        
        $this->email->subject('Email Test');
        $this->email->message('Testing the email class.');
        $this->email->send();


Messages In This Thread
Email class using smtp protocol. pls help - by El Forum - 08-20-2008, 07:03 AM
Email class using smtp protocol. pls help - by El Forum - 08-20-2008, 03:44 PM
Email class using smtp protocol. pls help - by El Forum - 08-20-2008, 03:53 PM
Email class using smtp protocol. pls help - by El Forum - 08-20-2008, 07:36 PM
Email class using smtp protocol. pls help - by El Forum - 08-21-2008, 11:56 AM
Email class using smtp protocol. pls help - by El Forum - 08-21-2008, 11:21 PM
Email class using smtp protocol. pls help - by El Forum - 08-22-2008, 08:08 AM
Email class using smtp protocol. pls help - by El Forum - 11-12-2008, 11:05 AM
Email class using smtp protocol. pls help - by El Forum - 11-15-2008, 07:37 AM
Email class using smtp protocol. pls help - by El Forum - 11-16-2008, 09:48 AM
Email class using smtp protocol. pls help - by El Forum - 02-19-2009, 09:35 AM
Email class using smtp protocol. pls help - by El Forum - 05-11-2009, 09:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB