Edit File: EmailTrait.php
<?php namespace App\Traits; use App\Models\SmsEmailNotification; trait EmailTrait { public function checkEmailConfig() { $checkConfig = SmsEmailNotification::where('type', 'smtp')->first(); if (!$checkConfig) return false; if ( $checkConfig->username == "" || $checkConfig->password == "" || $checkConfig->sender_email == "" || $checkConfig->port == "" || $checkConfig->host == "" ) { return false; } return true; } }
Back to File Manager