Okay: I have limited success with the following PHP:
<?php
if($_POST["message"]) {
mail("email.address.redacted", "Email from WCA",
$_POST["message"]. "From:
[email protected]");
}
?>
A crucial part is that the same string also needs to be at the very top of the HTML doc (above <!doctype)
What...