The following is a snippet of my PHP code:
- Code: Select all
if ($i == 2)
$mail_group = "ITFtMill@northerntool.com";
if (($i == 1) || (($i > 2) && ($i < 8)))
$mail_group = "John.Smith@northerntool.com";
if ($i == 8)
$mail_group = "John.Smith@northerntool.com";
Messages succesfully get sent to John Smith, but members of 'ITFtMill' do not receive any messages. What could cause an attempt to send to a group to be unsuccessful? What settings, if any, do I need to review or modify?
Thanks,
Adrian

