Skip to content

Instantly share code, notes, and snippets.

@f3l1x
Last active May 16, 2016 11:45
Show Gist options
  • Save f3l1x/d6f02fc3b498e33059e8876a73e9ae13 to your computer and use it in GitHub Desktop.
Save f3l1x/d6f02fc3b498e33059e8876a73e9ae13 to your computer and use it in GitHub Desktop.
PHPMAILER for dev server
#!/usr/bin/php
<?php
$input = file_get_contents('php://stdin');
preg_match('|^To: (.*)|', $input, $matches);
$filename = tempnam('/var/log/mail', $matches[1] . '.');
file_put_contents($filename, $input);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment