Web host says IMAP is compiled in its PHP, but Post By Email settings says it isn’t.
When I run the code below on my server, it says IMAP functions are not available (reinforcing the Post By Email Settings message). But I’m not certain this is the best way to check. Thanks!
if (function_exists(‘imap_open’)) {
echo “IMAP functions are available.<br />n”;
} else {
echo “IMAP functions are not available.<br />n”;
}