An email address is entered in a form and sent to this script. For some reason, the mail function isn't werking. I did check to see if the varible is passing over correctly, and it is...
Does anyone see any probs in this script that I'm missing?
Thanks in advnce for any help you might provide,
Lazz
<?php
$subject = "Your password from Website withheld due to contract";
$message = "Hello,\rYour portfolio password is:\n";
$mesage .= "passowrd\n";
$fromName = "password@websitewithheld.com";
$replyAddress = $fromName;
mail($vSendPass, $subject, $message, "From: $fromName");
?>