Skip to content

Instantly share code, notes, and snippets.

@shmaltorhbooks
Created May 10, 2013 11:18
Show Gist options
  • Save shmaltorhbooks/5553815 to your computer and use it in GitHub Desktop.
Save shmaltorhbooks/5553815 to your computer and use it in GitHub Desktop.
send mail
<?php
$dir = opendir ("./mails");
while ( $file = readdir ($dir)) {
if (( $file != ".") && ($file != "..")) {
system('sendmail -t < ./mails/'.$file);
unlink('./mails/'.$file);
echo "$file\n";
}
}
closedir ($dir);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment