arjanvr Posted April 27, 2014 Share Posted April 27, 2014 I want for an WHMCS install that there are absolutely no outgoing emails to clients with invoices, reminders etc, ever. No client registration emails as we create all clients by hand. Is there any way to stop this process completely? 0 Quote Link to comment Share on other sites More sharing options...
DennisHermannsen Posted April 27, 2014 Share Posted April 27, 2014 You can disable each email template from the administrator panel by going to Setup -> Email Templates. From there, choose a template and check the "Disable" box. 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted April 27, 2014 Share Posted April 27, 2014 well, i have a fast and easy solution, you may need to create php file in "YourWHMCS/includes/hooks/" directory name it "noemails.php", and place the following code inside it: <?php function hook_disableOutgoingEmails($vars){ return array('abortsend'=>true);}add_hook("EmailPreSend",1,"hook_disableOutgoingEmails"); ?> this should prevent any email from being sent out, give it a try 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.