![]() |
tank auth activation email - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: tank auth activation email (/showthread.php?tid=44184) |
tank auth activation email - El Forum - 08-06-2011 [eluser]andes[/eluser] Hi, I installed the tank auth user management library. It seems to work all fine, the database tables and everything. The only problem is that i do not receive an activation email that its suppose to send. It doesn't give me any errors, it says successfully sent, but I receive nothing in my inbox. Below is my application/config/email.php file settings Code: $config['protocol'] = 'smtp'; Does anyone seem to know what may be the problem? tank auth activation email - El Forum - 08-06-2011 [eluser]JonoB[/eluser] [quote author="andes" date="1312658358"]Hi, I installed the tank auth user management library. It seems to work all fine, the database tables and everything. The only problem is that i do not receive an activation email that its suppose to send. It doesn't give me any errors, it says successfully sent, but I receive nothing in my inbox. Below is my application/config/email.php file settings Code: $config['protocol'] = 'smtp'; Does anyone seem to know what may be the problem?[/quote] Are you able to send other emails through CI using those settings? I'm guessing that they are wrong...last time I checked gmail did not allow port 25 to be used. See https://mail.google.com/support/bin/answer.py?answer=13287 tank auth activation email - El Forum - 08-06-2011 [eluser]andes[/eluser] Okay, I followed that link and changed to the 465 port. Now I get the following: Code: hello: Any help on this? tank auth activation email - El Forum - 08-06-2011 [eluser]andes[/eluser] I got it working. I entered the following code in my controller file. And to make Tank AUTH work, I entered this code below in the _send_email function in the auth.php controller file Code: $this->load->library('email'); hope it helps anyone else having smtp problems. I got the code from the following thread http://ellislab.com/forums/viewthread/84689/P15/ |