Skip to content

Instantly share code, notes, and snippets.

@Codercise
Created June 25, 2014 23:38
Show Gist options
  • Save Codercise/23865ecb63cee1209966 to your computer and use it in GitHub Desktop.
Save Codercise/23865ecb63cee1209966 to your computer and use it in GitHub Desktop.
<?php
$arrayValues = array(
'name' => $_POST['name'],
'email' => $_POST['email'],
'message' => $_POST['message']
);
mail('dd@ddmail.com', 'someone submitted your form', "
someone submitted your form with the details $arrayValues['name'] $arrayValues['email'] $arrayValues['message']
");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment