Skip to content

Instantly share code, notes, and snippets.

@nemanjan00
Last active November 1, 2015 13:50
Show Gist options
  • Save nemanjan00/55d0184d42697f2cd013 to your computer and use it in GitHub Desktop.
Save nemanjan00/55d0184d42697f2cd013 to your computer and use it in GitHub Desktop.
<?php
if(isset($_POST["name"]) && isset($_POST["email"]) && isset($_POST["message"])){ //proverava jesu li prosleđena sva tri argumenta
mail("nemanjan00@gmail.com", "Naslov", "Od: ".$_POST["name"]." <".$_POST["email"].">"."\n".$_POST["message"]); //mail(kome, naslov, sadržaj);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment