![]() |
[Done] Email package protocols - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Roadmap (https://forum.codeigniter.com/forumdisplay.php?fid=33) +--- Thread: [Done] Email package protocols (/showthread.php?tid=72423) |
[Done] Email package protocols - jlp - 12-17-2018 We are in the process of modernizing the Email package - having it use exceptions, using the adapter process for different mail transport programs, and thorough unit testing. The CodeIgniter 3 Email supported three "protocols": mail, sendmail, and SMTP. We want to guage the relative importance of each of these to the CodeIgniter community, and have made a poll attached to this thread to measure that. One of the goals for CodeIgniter 4 is unit testing & code coverage. We have a solution planned for the SMTP handler: using mailcatcher. We don't have a similar solution in mind for "mail" or "sendmail". If you have suggestions, please mention them in a post in this thread. Thanks! RE: Email package protocols - dave friend - 12-17-2018 Care to share a link to the mailcatcher you're planning on using? RE: Email package protocols - ciadmin - 12-17-2018 (12-17-2018, 08:45 AM)daveĀ friend Wrote: Care to share a link to the mailcatcher you're planning on using? https://github.com/sj26/mailcatcher Other useful links: https://vladimir-ivanov.net/how-to-install-mailcatcher-on-centos-7-and-configure-it-for-php/ https://github.com/vccw-team/mailcatcher/blob/master/.travis.yml https://serversforhackers.com/c/setting-up-mailcatcher https://github.com/suzuki86/sample-of-using-mailcatcher-on-travisci It appears that there may be several non-forked repos named mailcatcher ... I need to check those out to make sure the one above is the "right" one. RE: Email package protocols - dave friend - 12-17-2018 (12-17-2018, 10:40 AM)ciadmin Wrote: It appears that there may be several non-forked repos named mailcatcher ... I need to check those out to make sure the one above is the "right" one. All those links seem to relate to the same library found here. I want to make sure I understanding your statements about MailCatcher. You are looking at it as a tool for Email Testing during Development - right? RE: Email package protocols - ciadmin - 12-17-2018 (12-17-2018, 11:42 AM)daveĀ friend Wrote:(12-17-2018, 10:40 AM)ciadmin Wrote: It appears that there may be several non-forked repos named mailcatcher ... I need to check those out to make sure the one above is the "right" one. That is correct. I am interested in using locally and as part of travis-ci. The github repo I cited is the source for the mailcatcher mentioned in the links. RE: [Done] Email package protocols - BillJnes - 05-20-2019 Thanks! |