![]() |
How to stop email sending functionality in email library - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: How to stop email sending functionality in email library (/showthread.php?tid=34217) |
How to stop email sending functionality in email library - El Forum - 09-23-2010 [eluser]RajendraPrasad[/eluser] Hi.. In my application i need to disable email sending. which is developed in codeigniter. I don't know how to stop this one. What i need to change in email library. If any one know please help me.. Thanks rajendra.. How to stop email sending functionality in email library - El Forum - 09-23-2010 [eluser]Buso[/eluser] find every send() call in your app and comment it with // or if you wanna hack the Email library you can try doing this at the beginning of the send() function: Code: return TRUE; Code: return FALSE; depending on whether your app uses the return value or not. In both cases the emails will stop being sent anyway How to stop email sending functionality in email library - El Forum - 09-23-2010 [eluser]RajendraPrasad[/eluser] Thank you.. |