Mike Walsh: > Is there a way to determine if wp_mail() has indeed been overloaded? Use the Reflection API. <http://www.php.net/manual/en/book.reflection.php> $reflection = new ReflectionFunction( 'wp_mail' ); print $reflection->getFileName(); Thomas