Skip to content

Instantly share code, notes, and snippets.

@Lif3line
Created May 28, 2014 11:00
Show Gist options
  • Save Lif3line/ea7515f2e05b73e8cb15 to your computer and use it in GitHub Desktop.
Save Lif3line/ea7515f2e05b73e8cb15 to your computer and use it in GitHub Desktop.
Send an email from a server
<?php
$headers = 'From: ' . "\r\n";
$to = "";
$subject = "";
$body = "";
mail($to, $subject, $body, $headers);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment