Skip to content

Instantly share code, notes, and snippets.

@anotheremily
Created April 8, 2011 15:57
Show Gist options
  • Save anotheremily/910163 to your computer and use it in GitHub Desktop.
Save anotheremily/910163 to your computer and use it in GitHub Desktop.
Auto-reply detection in PHP (with Zend)
<?php
/**
* See if it's an autoreply
* $message is of type Zend_Mail_Message
*/
$autoreply = false;
try {
if ($message->{'X-Autoreply'}) {
$autoreply = true;
}
} catch (Exception $e) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment