Skip to content

Instantly share code, notes, and snippets.

@Mulkave
Created June 22, 2013 10:56
Show Gist options
  • Save Mulkave/5840448 to your computer and use it in GitHub Desktop.
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
#!/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