Skip to content

Latest commit

 

History

History
73 lines (48 loc) · 1.93 KB

README.md

File metadata and controls

73 lines (48 loc) · 1.93 KB

Filament Email Client

Latest Version on Packagist Total Downloads

This is a simple email client system based on IMAP.

Installation

You can install the package via composer:

composer require mediusware/filament-email-client

After install run this command

php artisan vendor:publish --provider="Webklex\IMAP\Providers\LaravelServiceProvider"

Configuration

Copy to this config in your .env file and configure with your credentials.

IMAP_HOST="mail.example.com"
IMAP_PORT="993"
IMAP_ENCRYPTION="ssl"
IMAP_VALIDATE_CERT="true"
IMAP_USERNAME="test@example.com"
IMAP_PASSWORD="your_password"
IMAP_DEFAULT_ACCOUNT="default"
IMAP_PROTOCOL="imap"

Usage

Now go to your AdminPanelProvider and add this line in plugins section.

// App\Providers\Filament\AdminPanelProvider;

use Mediusware\FilamentEmailClient\FilamentEmailClientPlugin;

return $panel
  ->plugins([
      // 
      FilamentEmailClientPlugin::make(),
  ]);

When you configure properly then you will see this Mailbox menu on Filament Admin Panel.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.