Can anyone help me how to reconstruct this script, as you can see, it's only aa email notification for the signers, i want to add also it will receive a copy for the owner of the site.
here is the code:
Code: Select all
print ("<PRE>");
if (mail($name." <".$email.">", $mailsubject, $msg, "From: ".$fromname." <".$Fromaddress.">\nContent-Type: text/html; charset=utf-8"))
{
print ("Mail Sent To $email<br><br>");
print ($msg);
}
else
{
print ("Mail Dead");
}
print ("</PRE>");