Created
June 22, 2013 10:56
-
-
Save Mulkave/5840448 to your computer and use it in GitHub Desktop.
catches emails being sent from local machine, used to setup a mock for a local mail server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
# create a filename for the emlx file | |
list($ms, $time) = explode(' ', microtime()); | |
$filename = dirname(__FILE__).'/'.date('Y-m-d h.i.s,', $time).substr($ms,2,3).'.emlx'; | |
# write the email contents to the file | |
$email_contents = fopen('php://stdin', 'r'); | |
$fstat = fstat($email_contents); | |
file_put_contents($filename, $fstat['size']."\n"); | |
file_put_contents($filename, $email_contents, FILE_APPEND); | |
# open up the emlx file (using Apple Mail) | |
exec('open '.escapeshellarg($filename)); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment