-
-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Aniket Magadum edited this page Sep 1, 2019
·
6 revisions
- Visit the settings panel of your website panel and search for userconnect.
- Provide the basic configuration for the plugin.
This plugin includes the following components
- Newsletter
- SocialFab
Simply drag and drop the component to a CMS Page or Layout.
You may use the data captured by the plugin anywhere in your website .
use Fytinnovations\UserConnect\Models\Subscriber;
public function getVerifiedSubscribers(){
$subscribers= Subscriber::verified();
return $subscribers;
}use Fytinnovations\UserConnect\Models\Subscriber;
public function getVerifiedSubscribers(){
$subscribers= Subscriber::unverified ();
return $subscribers;
}You can listen to the beforeVerificationMailSend and write some functionality
Event::listen('fytinnovations.userconnect.beforeVerificationMailSend', function($subscriber) {
//Making a API Call
});You can follow this guide to override the default component markup