Jump to content

Cant send mail from webserver


JJohnsenDK

Recommended Posts

Im having problems sending mails from my webserver. I have tried to make a small php script which sends a simple mail:

 

 

<?php
$to = "[email protected]";
$subject = "Test af mail sendning";
$message = "Jaaah, dette er så en test.";
$headers = "From: [email protected]";
echo "<h2>This sends mail to ".$to."</h2>";
if(mail($to, $subject, $message, $headers)){
   echo "Send!";
}else{
   echo "Could'nt send the mail ";
}
?> 

 

And it unfortunally shows: "Couldnt send the mail :(".

 

What could be wrong? Can i in any way test my webserver?

Link to comment
https://forums.phpfreaks.com/topic/104180-cant-send-mail-from-webserver/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.