Welcome Guest, Not a member yet? Register   Sign In
Ion Auth - Lightweight Auth System based on Redux Auth 2

[eluser]bill19[/eluser]
Hi,

I have got it working.

the steps are:

1) change in application/config/ion_auth.php:

Code:
$config['use_ci_email']= false;
$config['email_config']         = 'email';

2) create new config file called email.php, with the following content:

Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

/*
| -------------------------------------------------------------------------
| Email
| -------------------------------------------------------------------------
| This file lets you define parameters for sending emails.
| Please see the user guide for info:
|
| http://ellislab.com/codeigniter/user-guide/libraries/email.html
|
*/
$config['protocol']='smtp';

$config['smtp_host']='ssl://smtp.googlemail.com'; //(SMTP server)

$config['smtp_port']='465'; //(SMTP port)

$config['smtp_timeout']='30';

$config['smtp_user']='[email protected]'; //([email protected])

$config['smtp_pass']='qwertyuiop93'; // (gmail password)


$config['mailtype'] = 'html';
$config['charset'] = 'utf-8';
$config['newline'] = "\r\n";


/* End of file email.php */
/* Location: ./application/config/email.php */

3) drop it into the application/config folder.

It should work now,

Regards,

Bill



Messages In This Thread
Ion Auth - Lightweight Auth System based on Redux Auth 2 - by El Forum - 05-02-2012, 09:29 AM



Theme © iAndrew 2016 - Forum software by © MyBB