Jump to content

Help adding confirmation of email '@' symbol to php script


leet8845

Recommended Posts

Hi,

 

I need some code to validate an email address sent on my form.

 

Does anyone know if its possible to add anything to exsiting code below to do this.

 

I'm mainly bothered that the email has a '@' symbol, nothing more complex really.

 

Here's my code which works fine at the mo:

 

<?php 

// Getformdataandcreateemail 
$Email2="mail@mywebsite.co.uk"; 
$email=$_POST['Email']; 
$name=stripslashes($_POST['Name']); 
$subject=stripslashes($_POST['Subject']); 
$messagecont=stripslashes($_POST['Message']); 
$message= 
<<<EOD 
-------------------------------- 
Enquiry from your website 
-------------------------------- 

Name: $name 
Subject: $subject 
EmailAddress: $email 
Message: $messagecont 

-------------------------------- 
End of Message 
-------------------------------- 
EOD; 

//Sendemail 
@mail($Email2,$subject,$message, "From:$Email2"); 
header("Location:thankyou.html"); 


?> 

 

 

 

Many thanks for looking

Link to comment
Share on other sites

$email = "me@hotmail.com";
if (preg_match('/\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i', $email))
{
echo "email valid";
}

 

 

 

Better one (RFC 2822 standard)

$email = "me@hotmail.com";
if(preg_match('/\A(?:^[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$)\Z/i', $email ))
{
echo "email valid";
}

Link to comment
Share on other sites

replace

$email=$_POST['Email']; 

 

with

 

$email = $_POST['Email'];
if(preg_match('/\A(?:^[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$)\Z/i', $email ))
{



echo "email valid";
}

Link to comment
Share on other sites

Hi thanks for that but its still not working, have I made a mistake?

 

<?php

// Getformdataandcreateemail
$Email2="mail@mywebsite.co.uk";
$email = $_POST['Email'];
if(preg_match('/\A(?:^[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$)\Z/i', $email ))
{
echo "email valid";
}
$name=stripslashes($_POST['Name']);
$subject=stripslashes($_POST['Subject']);
$messagecont=stripslashes($_POST['Message']);
$message=
<<<EOD
--------------------------------
Enquiry from your website
--------------------------------

Name: $name
Subject: $subject
EmailAddress: $email
Message: $messagecont

--------------------------------
End of Message
--------------------------------
EOD;

//Sendemail
@mail($Email2,$subject,$message, "From:$Email2");
header("Location:thankyou.html");


?>

Link to comment
Share on other sites

Try this.

 

<?php

// Getformdataandcreateemail
$FromEMail =  "mail@mywebsite.co.uk";
$ToEMail=$_POST['Email'];

if(!preg_match('/\A(?:^[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$)\Z/i', $ToEMail))
{
die ("$ToEMail in an invalid email");
}
$name=stripslashes($_POST['Name']);
$subject=stripslashes($_POST['Subject']);
$messagecont=stripslashes($_POST['Message']);
$message=
<<<EOD
--------------------------------
Enquiry from your website
--------------------------------

Name: $name
Subject: $subject
EmailAddress: $email
Message: $messagecont

--------------------------------
End of Message
--------------------------------
EOD;

//Sendemail
@mail($ToEMail,$subject,$message, "From:$FromEMail");
header("Location:thankyou.html");


?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.