• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

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