Welcome Guest, Not a member yet? Register   Sign In
my email sign up not working
#1

[eluser]Unknown[/eluser]
function sendHtmlMail($to ='',$from ='',$subject='',$message='',$cc='')
{
// load Email Library
$this->load->library('email');

$config['mailtype'] = 'html';
$config['wordwrap'] = TRUE;

$this->email->initialize($config);

$this->email->to($to);
$this->email->from($from);
$this->email->cc($cc);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();
if ( ! $this->email->send())
{
echo $this->email->print_debugger();
}
}


Messages In This Thread
my email sign up not working - by El Forum - 07-25-2012, 04:32 AM
my email sign up not working - by El Forum - 07-25-2012, 05:49 AM
my email sign up not working - by El Forum - 07-25-2012, 06:13 AM



Theme © iAndrew 2016 - Forum software by © MyBB