Guest User

Untitled

a guest
Mar 20th, 2018
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. $names = Array(
  3. "name" => "Имя",
  4. "email" => "Емаил",
  5. "phone" => "Телефон",
  6. "product_name" => "Продукт",
  7. );
  8. foreach ($_POST as $key => $value) {
  9. if (array_key_exists($key, $names)) {
  10. $n = $names[$key];
  11. $text .= "$n : $value \n";
  12. }
  13. }
  14.  
  15. $to = "mail@mail.ru";
  16. $headers = "Content-type: text/plain; charset = utf-8";
  17. $subject = "письмо";
  18. $send = mail($to, $subject, $text, $headers);
  19.  
  20. if ($send) {
  21. echo "success";
  22. }
Add Comment
Please, Sign In to add comment