CodeIgniter Forums
CI4: email and captcha need recommendation - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: CI4: email and captcha need recommendation (/showthread.php?tid=74180)



CI4: email and captcha need recommendation - Avega Soft - 08-13-2019

Hi, everybody. 

Version CI3 includes an email library and Captcha helper. But in the version of the CI4 they are not. What would you recommend using alternative libraries/helpers of third-party solutions in this case? Will email library (from CI3) be ported for version 4? Thanks!


RE: CI4: email and captcha need recommendation - dave friend - 08-13-2019

As far as I know, email is a work in progress and will be included in the initial release.

There are about a zillion captcha class examples and demos on the web. A Google search for "php captcha class" returned just short of 15 million results in .58 seconds.


RE: CI4: email and captcha need recommendation - Avega Soft - 08-13-2019

(08-13-2019, 05:54 AM)dave friend Wrote: As far as I know, email is a work in progress and will be included in the initial release.

There are about a zillion captcha class examples and demos on the web. A Google search for "php captcha class" returned just short of 15 million results in .58 seconds.

Of course, in a google search you can find many variants for captcha classes. But I would like to get community recommendations on what they use captcha's libraries in their projects.


RE: CI4: email and captcha need recommendation - kilishan - 08-13-2019

Email will be included in RC1 - a ported version of the CI3 lib. A more flexible one is slated for 4.1.

As for captcha - the one CI3 had was pretty easy to be broken by bots nowadays so it was ripped. I think reCaptcha is the best currently.

CI4 does have a simple honeypot built in, though, that can provide similar protection to CI3's captcha. I hope to expand it on it future releases.


RE: CI4: email and captcha need recommendation - Avega Soft - 08-13-2019

(08-13-2019, 09:41 AM)kilishan Wrote: Email will be included in RC1 - a ported version of the CI3 lib. A more flexible one is slated for 4.1.

As for captcha - the one CI3 had was pretty easy to be broken by bots nowadays so it was ripped. I think reCaptcha is the best currently.

CI4 does have a simple honeypot built in, though, that can provide similar protection to CI3's captcha. I hope to expand it on it future releases.

Thank you for your answer. Where can I see the email library code for version 4?  maybe there is a link to github?


RE: CI4: email and captcha need recommendation - dave friend - 08-14-2019

(08-13-2019, 10:16 PM)Avega Soft Wrote:
(08-13-2019, 09:41 AM)kilishan Wrote: Email will be included in RC1 - a ported version of the CI3 lib. A more flexible one is slated for 4.1.

As for captcha - the one CI3 had was pretty easy to be broken by bots nowadays so it was ripped. I think reCaptcha is the best currently.

CI4 does have a simple honeypot built in, though, that can provide similar protection to CI3's captcha. I hope to expand it on it future releases.

Thank you for your answer. Where can I see the email library code for version 4?  maybe there is a link to github?


The CI4 GitHub has a "feature/email" branch. I'm not sure if there is anything to see there.


RE: CI4: email and captcha need recommendation - kilishan - 08-14-2019

Pull request is here


RE: CI4: email and captcha need recommendation - Avega Soft - 08-14-2019

(08-14-2019, 05:59 AM)kilishan Wrote: Pull request is here

Thanks for the link