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();
}
}
#2

[eluser]LuckyFella73[/eluser]
What is not working? Do you get error messages?
#3

[eluser]Crackarjack[/eluser]
mailtype text text or html Type of mail. If you send HTML email you must send it as a complete web page. Make sure you don't have any relative links or relative image paths otherwise they will not work.







Theme © iAndrew 2016 - Forum software by © MyBB