Welcome Guest, Not a member yet? Register   Sign In
Redux Authentication Email module
#11

[eluser]Fenix[/eluser]
I'm having the same problem. I've decided to forget about it for now. I am using the plain php mailer now. Just change protocol to mail and it works fine.
#12

[eluser]moksahero[/eluser]
I had similar problem last night and solved it by creating separate email.php in application/config dir
and it looks like this.

//email.php
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.gmail.com';
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = 'password';
$config['smtp_port'] = '465';
$config['mailtype'] = 'html';

And load email library without config file.

$this->load->library('email');

Don't ask me why but it worked for me this way after trying to specify
config file in email library load.
#13

[eluser]opel[/eluser]
has anyone got redux working without SMTP ? IF so hot did they do it as I'm developing locally and my MAMP on OSX uses MTA that requires a lot of work to get SMTP working so I need a work around. I tried this :
Code:
$config['auth']['mail']['mailtype']        = 'html';
$config['auth']['mail']['protocol']     = 'mail';
$config['auth']['mail']['smtp_host']     = '';
$config['auth']['mail']['smtp_user']     = '';
$config['auth']['mail']['smtp_pass']     = '';
$config['auth']['mail']['smtp_port']     = '';
$config['auth']['mail_from_email']         = 'email@myaddress';
$config['auth']['mail_from_name']         = 'Andy';




Theme © iAndrew 2016 - Forum software by © MyBB