Welcome Guest, Not a member yet? Register   Sign In
Problem sending Email
#3

[eluser]Beginers[/eluser]
trY THIS
Code:
$config = Array(
              'protocol' => 'smtp',
              'smtp_host' => 'ssl://smtp.googlemail.com',
              'validation'=>TRUE,
              'smtp_timeout'=>30,
              'smtp_port' => 465,
              'smtp_user' => '[email protected]', // your email
              'smtp_pass' => 'yourpassword', // your email password
              'mailtype' => 'html',
              'charset' => 'iso-8859-1',
              'wordwrap' => TRUE
            );
            
              $this->load->library('email', $config);
              $this->email->from('[email protected]','Title'); // change it to yours
              $this->email->to('[email protected]'); // change it to yours
              $this->email->subject('Title');
              $this->email->message('Your Message');
             $this->email->send();


Messages In This Thread
Problem sending Email - by El Forum - 09-09-2010, 10:22 AM
Problem sending Email - by El Forum - 09-05-2012, 01:52 AM
Problem sending Email - by El Forum - 09-05-2012, 02:05 AM
Problem sending Email - by El Forum - 09-05-2012, 02:30 AM
Problem sending Email - by El Forum - 09-05-2012, 02:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB