0

I need to good Mail Library to work with mail server for send and receive mail. I search in Google and find Zeta Mail Component, but I don't know to use in Laravel 5.x project. What should I do? How to add Laravel project and use it?

Ehsan Ali
  • 1,362
  • 5
  • 25
  • 51

1 Answers1

1

1.install via composer like this 'composer require zetacomponents/mail' or by adding it inside your composer.json 2.Inside your laravel controller you can then do this

    $imap = new \ezcMailImapTransport( "imap.example.com" );

it works for me.

Jayish
  • 76
  • 1
  • 4