Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialModure Rares
Courses Plus Student 9,041 PointsPHP email validation doesn't work
Hello. I am trying to validate an email address using an API. The problem is that even if I type an invalid email , the program still runs like the email would be valid. What am I doing wrong?// please help me
if($_SERVER["REQUEST_METHOD"] == "POST") {
$name = trim($_POST["name"]);
$email = trim($_POST["email"]);
$details = trim($_POST["suggestion"]);
if($name == "" || $email == "" || $details == ""){
echo "Please fill in al the fields";
exit;
}
echo "<pre>";
$email_body = "";
$email_body .= "Name: " . $name . "\n";
$email_body .= "Email: ". $email . "\n";
$email_body .= "Details: " . $details ."\n"; #this represents a linebreak
echo $email_body;
echo "</pre>";
// EMAIL SENDING CODE HERE
require("include/class.phpmailer.php");
$mail = new PHPMailer;
///creating the object
if(!$mail->ValidateAddress($email)){
echo "Invalid email address. Please enter a valid email address in order to send a suggestion. Thanks!";
exit;
}