mail() function stopped working after server upgraded to php 4.4.4. not getting any error on server error-log file and the php page . any idea please.
using mail function code
many thanks
using mail function code
Code:
$to = "to@domain"; $subject = "Test mail"; $message = "Hello ! This is a simple email message frm fis server."; $message .= $contact; $from = "from@domain"; $headers = "From: $from"; mail($to,$subject,$message,$headers);
Comment