|
}
function sendEmail($Comment,$Name,$Phone,$Email)
{
//should send email here
$email_message = 'The following person used the shapiro & Stern online contact form.
Name: '.$Name.'
Phone: '.$Phone.'
Email: '.$Email.'
Comment: '.$Comment.'
';
// echo $email_message;
mail("mstern@sandsllp.com,nshapiro@sandsllp.com", "shapiro & Stern Online Contact Form", $email_message, "From: $Name <$Email>");
return;
}
function message($message)
{
echo " $message
";
}
?> |