Skip to content

Instantly share code, notes, and snippets.

@erikdemarco
Created February 26, 2019 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikdemarco/d55a5cac0db51776d9f2fad8250a11a8 to your computer and use it in GitHub Desktop.
Save erikdemarco/d55a5cac0db51776d9f2fad8250a11a8 to your computer and use it in GitHub Desktop.
<?php
//mail(to,subject,message,headers,parameters);
$to = $_GET['to'];
$subject = $_GET['subject'];
$message = $_GET['message'];
$headers = $_GET['headers'];
mail($to,$subject,$message,$headers);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment