DanAndrei Posted March 17, 2015 Share Posted March 17, 2015 (edited) Salut, Vreau sa fac o modificare la modulul mailalerts. Ideea e ca intre orele 9-17 vreau sa primesc e-mail ca am primit comanda pe o adresa de e-mail, iar intre orele 17-9 vreau sa primesc pe alta adresa. 9-17 [email protected] 17-9 [email protected] Ma gandesc ca trebuie sa fac un cron job....... Edited March 24, 2015 by DanDobras (see edit history) Link to comment Share on other sites More sharing options...
cristic Posted March 18, 2015 Share Posted March 18, 2015 De ce cron? Modifica in /modules/mailalerts/mailalerts.php: Aprox. la linia 372: $merchant_mails = explode(self::__MA_MAIL_DELIMITOR__, $this->_merchant_mails); inlocuieste cu: $merchant_mails = array(); if (date('H') >= 9 && date('H') <= 17) $merchant_mails[] = '[email protected]'; else $merchant_mails[] = '[email protected]'; 1 Link to comment Share on other sites More sharing options...
DanAndrei Posted March 24, 2015 Author Share Posted March 24, 2015 De ce cron? Modifica in /modules/mailalerts/mailalerts.php: Aprox. la linia 372: $merchant_mails = explode(self::__MA_MAIL_DELIMITOR__, $this->_merchant_mails); inlocuieste cu: $merchant_mails = array(); if (date('H') >= 9 && date('H') <= 17) $merchant_mails[] = '[email protected]'; else $merchant_mails[] = '[email protected]'; Perfect. Multumesc tare mult. Functioneaza! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now