Welcome Guest, Not a member yet? Register   Sign In
How to stop email sending functionality in email library
#1

[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..
#2

[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;
or
Code:
return FALSE;

depending on whether your app uses the return value or not. In both cases the emails will stop being sent anyway
#3

[eluser]RajendraPrasad[/eluser]
Thank you..




Theme © iAndrew 2016 - Forum software by © MyBB