I was using my order form on my past website, and now when I switched webhosting, it dosnt send me the email anymore.
<?php
session_start();
header("Cache-control:private");
?><title>NetPulse - Order Complete, Thank you!</title>
<font face="Verdana" style="font-size:12px;" color="#000000"><div align="left">
<?php
function MAIL_NVP($fromname, $fromaddress, $toname, $toaddress, $subject, $message)
{
// Copyright 2005 ECRIA LLC, http://www.ECRIA.com
// Please use or modify for any purpose but leave this notice unchanged.
$headers = "From: \"".$fromname."\" <".$fromaddress.">\n";
return mail($toaddress, $subject, $message, $headers);
}
Is some of the script. Maybe someone can help?