<?php
$msg = " ";
$to = "me@address.com"; [I've got the real e-mail address in there]
$subject = "Form results";
$email = $_REQUEST['email'];
$mailheaders = "From: $email\r\n".
"cc: myalternate@address.com"; [I've got another real e-mail address in there]
mail($to, $subject, $msg, $mailheaders);
?>
It works fine on my old site, but it's not working here yet. It's been so long since I've set up new PHP. Is there something I'm forgetting?
Thanks! (Moving years worth of legacy code ... ugh....)