Jump to content

[REZOLVAT] Modificare Mail Alerts


Recommended Posts

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 by DanDobras (see edit history)
Link to comment
Share on other sites

 

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...