I'm trying to excute php mail() function from my script, but I'm recieve the mail to late (after 2 hours!!!) this is mail sipmle script:
<?php
// print phpinfo();
error_reporting(-1);
ini_set('display_errors',1);
set_error_handler("var_dump");
if(mail('abdelkhalek.oumaya@gmail.com', 'test 05082016', 'test')){
echo 'done';
}
?>