PHP Classes

File: src/config/imapx.php

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   PHP Imap Library   src/config/imapx.php   Download  
File: src/config/imapx.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: PHP Imap Library
Read and decode email from IMAP or POP3 mailboxes
Author: By
Last change: Applied fixes from StyleCI
Date: 7 years ago
Size: 730 bytes
 

Contents

Class file image Download
<?php
/*
    This file is for laravel package. if you use this project without laravel please ignore this
*/
return [
   
'host' => 'imap.gmail.com', // this is your server

   
'username' => 'yourdomain@gmail.com', // here is your server username. ex: john@gmail.com

   
'password' => 'your-password',

   
'port' => 993,

   
'driver' => 'imap', // you can use pop3 also

   
'ssl' => true, // if you use ssl supported host then use it true otherwise false

   
'novalidate' => false, // if you use own server certificate then use true

   
'auto-connect' => false, // if it set true then autometically connect with server in every request
];