Skip to content

Instantly share code, notes, and snippets.

@polonskiy
Created November 15, 2014 14:32
Show Gist options
  • Save polonskiy/30233cd0753b3b579014 to your computer and use it in GitHub Desktop.
Save polonskiy/30233cd0753b3b579014 to your computer and use it in GitHub Desktop.
#!/usr/bin/php
<?php
$data = file_get_contents('php://stdin');
preg_match('#^To:(.*)#i', $data, $matches);
$filename = tempnam('/tmp', trim($matches[1]) . '_');
file_put_contents($filename, $data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment