Home › Forums › Back End › Message variable not making it to email › Reply To: Message variable not making it to email
November 28, 2013 at 11:18 am
#157309
Participant
Your PHP code didn’t show up. The forums here are not the best place to share bigger chunks of code; I would suggest using pastebin or making a gist on github, and then simply providing a link here.
-=-=-=-=-= Edit
There it is.
Have you tried var_dump
ing the $message
variable to make sure it contains what you expect?
p.s. Your script is vulnerable to email header injection. You should validate the email address submitted by the user:
<?php
$email = filter_var( $_POST['email'],FILTER_VALIDATE_EMAIL );
Otherwise, a malicious user could include a whole list of headers and use your script as a spam server.