Skip to content

Instantly share code, notes, and snippets.

@liamka
Created September 1, 2013 21:38
Show Gist options
  • Save liamka/6407496 to your computer and use it in GitHub Desktop.
Save liamka/6407496 to your computer and use it in GitHub Desktop.
<?php
$to = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment