How to Install imap extension in PHP on Windows? Last Updated : 05 Jan, 2022 Comments Improve Suggest changes Like Article Like Report IMAP stands for Internet Message Access Protocol. It is an application layer protocol. PHP-IMAP is used to efficiently access messages from the IMAP server. IMAP stores email on the server and can download on-demand. To access the IMAP server we have to use PHP IMAP extension, now using this extension we can execute several operations to get different parts of the message. Or we can say that it acts as an intermediary between client and email servers. It was designed by Mark Crispin in 1986 as a remote access mailbox protocol. Some important features of IMAP are: Connects to the mailbox like POP3, IMAP, NNAP, etc.Returns mailbox informationRead e-mails including attachmentsSave attachments from remote IMAP server locally.Also, mark emails are seen or unseenPrerequisites: Install XAMPP.Verify if IMAP is already installed or not.Verifying IMAP is installed or notTo verify the IMAP extension is installed or not you have to follow the following step: Step 1: Create a new file in the root directory with an extension.php like findingexten.php. In this file write the following code: <?php // It will return all the configurations of the server phpinfo(); ?>Step 2: Run this file in any browser and you will see the IMAP is installed or not. Installing imap extension in PHP on WindowsThere are many ways to install an IMAP extension. Following is one of the ways of installing IMAP. Step 1: Click on the Config button and open php.ini in your editor. Step 2: Find ";extension=imap" in the file and remove the semicolon from it and then save the file. Step 3: Go to php folder in your system. It is usually present in C:\xampp. Step 4: Look for php_imap.dll in the ext folder. Step 5: Copy php_imap.dll and paste it into the following folder. C:\Windows\System32Step 6: Now restart the XAMPP server to see the effects. Comment More infoAdvertise with us Next Article How to Install imap extension in PHP on Windows? P prernatiwari Follow Improve Article Tags : Web Technologies PHP How To Installation Guide how-to-install +1 More Similar Reads How to Install PHP Extensions on Windows? PHP is a general-purpose server scripting language. It is a powerful and important tool for developing dynamic and interactive Web pages. It is widely used, free, fast, flexible, and pragmatic. After installing PHP and a web server on Windows, extensions are also needed because they provide added fu 2 min read How to Install imap extension in PHP on Linux? The Internet Message Access Protocol (IMAP) is an application layer protocol that allows a client to efficiently access emails from anywhere. It stores email on the server and can download on-demand. It is like an intermediary between client and email servers. It was designed by Mark Crispin in 1986 3 min read How to Install IMAP Extension in PHP on MacOS? Imap stands for Internet Message Access Protocol, It is a protocol used by email clients to retrieve email messages from mail servers, It is an application layer protocol in the OSI model. Imap allows us to store our messages on servers so that they can be accessed from multiple devices, whereas POP 4 min read How to Install PHP in IIS on Windows? PHP is a high-level programming language. It is mainly used for web development purposes. Along with HTML language, PHP is highly used also. HTML is used to collect data from users. And PHP is used to manipulate the data & give some output to the user. Nowadays, javascript is taken place of PHP 2 min read How to Install Imagick for PHP in Windows? The Imagick is the extension of ImageMagick software. It is used to create, compose, and edit digital images. It uses multiple computational threads to increase performance. Imagick is an extension of the main software that creates, and edits images by PHP languages. It is free open-source software 2 min read Like