Hi there...
I have a Plesk account and I seem to be having some problems with using PHP mail()...
I have tested this using the below:
substituting emails with valid addresses however I am not receiving them... Is their anything wrong with the Plesk server???
I have a Plesk account and I seem to be having some problems with using PHP mail()...
I have tested this using the below:
Code Select
<?php
$to = "fred@tosomewhere.com";
$from = "admin@somewhereelse.com";
$subject = "test email";
$body = "test body";
$headers = "From:" . $from . "\r\n";
mail($to, $subject, $body, $headers);
echo("finished");
?>
substituting emails with valid addresses however I am not receiving them... Is their anything wrong with the Plesk server???