Welcome Guest, Not a member yet? Register   Sign In
$this->email->send() returns nothing
#1

[eluser]redcloud80[/eluser]
Why $this->email->send() returns nothing (blank html)?

Code:
public function __construct()
{
  parent::__construct();
  $this->load->library('email');
}

public function send_confirmation_email()
{
  $user_email =  '[email protected]';
  
  $this->email->from('[email protected]', 'ttt');
  $this->email->to($user_email);
  $this->email->subject('Registration confirmation');
  $this->email->message('Please click this link to confirm your registration ');
  
  die($this->email->send());
}

This is my email.php config file

Code:
$config['protocol'] = 'smtp';
$config['charset'] = 'iso-8859-1';//'utf-8';
$config['mailtype'] = 'text';

$config['smtp_host'] = 'smtp.gmail.com';
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = 'mypass';
$config['smtp_port'] = 465;
$config['smtp_timeout'] = 5;

Any idea?


Messages In This Thread
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:34 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:44 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:45 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 12:48 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:19 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:28 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:29 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:29 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:31 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:34 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:36 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:37 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:38 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:40 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 02:56 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 03:02 PM
$this->email->send() returns nothing - by El Forum - 09-10-2012, 03:30 PM



Theme © iAndrew 2016 - Forum software by © MyBB