Hi there,
Wondering if you can help… I have a script that runs in a Cronjob but since I added two new emails to the array it does not work and i am mystified!
The line in question is:
[php]$email_list = array(‘[email protected]’,‘[email protected]’,‘[email protected]’,‘[email protected]’,‘[email protected]’,‘[email protected]’,‘[email protected]’);[/php]
When I replace it with this line it works:
[php]$email_list = array(‘[email protected]’,‘[email protected]’,‘[email protected]’,‘[email protected]’);[/php]
When I then changed the line to:-
[php]$email_list = array(‘[email protected]’,‘[email protected]’,‘[email protected]’);
it also works![/php]
Can anyone help?
Thanks in anticipation,
Allan