Contact (Let's get in touch)

Drop a line for us

"; } else if(!preg_match('/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/',$_POST['yourname'])) { $flag=0; echo "Please Enter Valid Name
"; } if($_POST['email']=='') { $flag=0; echo "Please Enter E-mail
"; } else if(!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $_POST['email'])) { $flag=0; echo "Please Enter Valid E-Mail
"; } if($_POST['message']=='') { $flag=0; echo "Please Enter Message"; } if ( empty($_POST) || !wp_verify_nonce($_POST['redify_name_nonce_field'],'redify_name_nonce_check') ) { print 'Sorry, your nonce did not verify.'; exit; } else { if($flag==1) { wp_mail(sanitize_email(get_option("admin_email")),trim($_POST['yourname'])." sent you a message from ".get_option("blogname"),stripslashes(trim($_POST['message'])),"From: ".trim($_POST['yourname'])." <".trim($_POST['email']).">\r\nReply-To:".trim($_POST['email'])); echo "Mail Successfully Sent"; } } } ?>