11-24-2010, 12:13 AM
[eluser]diasansley[/eluser]
plz check the code for syntax and stuff
the view
the controller
when i click on send nothin happens...
Help would be appreciated
Thanks
plz check the code for syntax and stuff
the view
Code:
<html>
<head>
<input type="submit" value="Send">
<?php form_open('email/send1');?>
</head>
</html>
the controller
Code:
<?php
Class Email extends Controller{
function _construct(){
parent::Controller();
$this->load->library('email');
$this->load->helper('form');
}
function index(){
$this->load->view('email_view.php');
}
function send1(){
$this->email->from('[email protected]', 'DA');
$this->email->to('[email protected]');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
echo $this->email->print_debugger();
}
}
?>
when i click on send nothin happens...
Help would be appreciated
Thanks