Open rhyudek1 opened 9 years ago
Do you use it in your laravel project
Yes, and I followed the steps mentioned here http://nahid.co/diary/read/8
please those line in Imapx.php filee
function connect()
{
$this->stream=imap_open('{'.$this->hostname.$this->port.'/'.$this->driver.$this->ssl.$this->novalidate.'}INBOX',$this->username,$this->password) or die('Cannot connect to Server: ' . imap_last_error());
if($this->stream)
$this->isConnect = true;
}
please add those line in Imapx.php file
function connect()
{
$this->stream=imap_open('{'.$this->hostname.$this->port.'/'.$this->driver.$this->ssl.$this->novalidate.'}INBOX',$this->username,$this->password) or die('Cannot connect to Server: ' . imap_last_error());
if($this->stream)
$this->isConnect = true;
}
I think it will work fine
great ! it's working.. thanks a lot ... can you insert those lines in a next release?
yap, Its mistake. I just fix it in tomorrow :) thanking you to find out it
Hello,
I follow all the mentioned steps and get an exception
Call to undefined method Nahidz\Imapx\Imapx::connect()
regards