You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
714 B
18 lines
714 B
<?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!";
|
|
?>
|
|
|