• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Form Mail / PHP not working.... Help!

M

mastana

Guest
Hi ,

I just pulled over this site form my old cobalt box ...where the script works just fine , but its not working in the plesk box.... any ideas why .... anyone ??

This is the form.php that i post to ..... the confirmation page comes up but no email is sent by the form.

Anyone??


<?php
$location = "http://www.sikhnation.com/FreeBookRequestConfirmation.html";
$body = ("<table border=\"0\" cellpadding=\"6\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"500\">");
while(list($key, $value) = each($HTTP_POST_VARS)) {
if ($key != "sort" && $key != "recipient" && $key != "subject") $body .= ("<tr><td width=\"150\"><b>$key</b></td><td>$value</td></tr>\n");
}
$body .= "</table>";

if (mail("$recipient", "$subject", "$body", "From: SikhNation FREE Book Request Form <$recipient>\nContent-type: text/html\n\n")) { header("Location: $location"); }
else { echo ("We have a problem sending an email<p>\n"); }

?>
 
Looks straightforward, have you watched the access_log, error_log, and maillog for any errors to pop out?
 
Back
Top