Yes, i was configured an email in config.inc.php? and it is the only part that sends mail, i was installed ATutor 1 week ago, but never works this funtion, thanks for your help
THIS IS THE ACTUAL CODE:
<?php
function atutor_mail($email,
$subject,
$body,
$from,
$bcc = '') {
global $_base_href;
global $_template;
$atutor_sig = "\n\n".'----------------------------------------------'."\n";
$atutor_sig .= _AT('sent_via_atutor', $_base_href);
$atutor_sig .= "\n"._AT('atutor_home').': http://atutor.ca';
$body .= $atutor_sig;
mail($email, stripslashes($subject), stripslashes($body), 'From: '.$from."\n"."Reply-To:".$from."\nBcc: $bcc\nX-Mailer: PHP");
}
?>