user2308111
user2308111

Reputation:

why is imap not working in PHP?

I'm creating a script to connect to a mailbox using IMAP everytime I run it I get this error...

Fatal error: Call to undefined function imap_open() in C:\xampp\htdocs\CheckContents\index.php on line 11

does anyone know why??

Upvotes: 1

Views: 5167

Answers (1)

Ziumin
Ziumin

Reputation: 4860

Add imap extension to your php setup by adding following to your php.ini

extension=php_imap.dll

Upvotes: 2

Related Questions