Browse Source

Add files via upload

redesign
Anxhelo Lushka 7 years ago
committed by GitHub
parent
commit
c76e3c4a69
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      request.php

18
request.php

@ -0,0 +1,18 @@
<?php
$name = $_POST['name'];
$surname = $_POST['surname'];
$email = $_POST['email'];
$logo = $_POST['Logo'];
$brand = $_POST['Brand Identity Guide'];
$styleguide = $_POST['Style Guide'];
$documentation = $_POST['Documentation'];
$project = $_POST ['project name'];
$message = $_POST['message'];
$budget = $_POST ['budget'];
$formcontent=" From: $name $surname \n Email: $email \n Requirements: $logo $brand $styleguide $documentation $project \n Budget: $budget \n Message: $message" ;
$recipient = "anxhelo1995@gmail.com";
$subject = "Ura Design - Design Request";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Thank You!";
?>
Loading…
Cancel
Save