I have installed and configured https://www.drupal.org/project/smtp module sending test email works fine, but when sending email with code nothing is sent and also no log in drupal (I have enabled debugging)
$ownerEmail = '[email protected]';
$subject = 'update';
$msg = 'You case has been updates';
mail($ownerEmail,$subject,$msg);