Jump to content

mishatyt

Newbie
  • Posts

    1
  • Joined

  • Last visited

Everything posted by mishatyt

  1. Помогите разобраться в PHP форме отправки, письма с сайта на mail.ru приходят полной "абракодаброй"! Знаю, что где то-надо поставить правильную кодировку, но где? <?php if(!$_POST) exit; $email = $_POST['email']; $error[] = preg_match('/\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i', $_POST['email']) ? '' : 'INVALID EMAIL ADDRESS'; if(!eregi("^[a-z0-9]+([_\\.-][a-z0-9]+)*" ."@"."([a-z0-9]+([\.-][a-z0-9]+)*)+"."\\.[a-z]{2,}"."$",$email )){ $error.="- некорректный электронный адрес"; $errors=1; } if($errors==1) echo $error; else{ $values = array ('name','email','message'); $required = array('name','email','message'); $your_email = "test-test@mail.ru"; $email_subject = "test-test"; $email_content = "new message:\n"; foreach($values as $value){ if(in_array($value,$required)){ if( empty($_POST[$value]) ) { echo 'Пожалуйста заполните пустые поля'; exit; } $email_content .= $value.': '.$_POST[$value]."\n"; } } if(mail($your_email,$email_subject,$email_content)) { echo 'Message sent!'; } else { echo 'ERROR!'; } } ?>
×
×
  • 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. See more about our Guidelines and Privacy Policy