ive made a script to send an email using the mail() function in php here is the script:
$email_content = "hello world";
$email = someone@somehost.com; //used an actual email in the original script
$email_subject = "Hello";
$user_email = "someone@somehost.com";
$headers = "From: $user_email";
if(mail($email,$email_subject , $email_content , $headers))
{
print"Email: $email_content - has been sent";
}
else print"Email Failed";
}
when i run the script, it says the email has been sent, meaning it has to be sent (or else there would be an error), however i dont recieve any emails on my email account, i checked the php_ini file for the qupis server and the SMTP server is localhost,
could this be the problem?
or does qupis not allow sending of emails?
if so is there anyway to change the php_ini file?
if anyone can shed some light on this matter!













