Forums | Mahara Community
Support
/
prevent mahara send emails to users
15 March 2014, 6:54
Hi Jesús
You have a couple of options for all emails that you can set in your config.php file.
If you want to stop all emails you can add (or set):
$cfg->sendemail = false;
If you want all emails sent to one particular email address - useful for diagnosing email problems:
$cfg->sendemail = true;
$cfg->sendallemailto = '[email protected]';
Cheers
Robert