%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Notifications/ |
Upload File : |
<?php
namespace App\Notifications;
use App\Models\GlobalSetting;
use App\Models\SmtpSetting;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Config;
class BaseNotification extends Notification implements ShouldQueue
{
use Queueable, Dispatchable;
protected $company = null;
/**
* Create a new notification instance.
*
* @return MailMessage
*/
public function build()
{
// Set the company in every Notification class
$company = $this->company;
if (!is_null($company)) {
App::setLocale($company->locale ?? 'en');
}
$smtpSetting = SmtpSetting::first();
$build = (new MailMessage);
$replyName = $companyName = $smtpSetting->mail_from_name;
$replyEmail = $companyEmail = $smtpSetting->mail_from_email;
$globalSetting = GlobalSetting::first();
Config::set('app.logo', $globalSetting->logo_url);
if (isWorksuite()) {
return $build->from($companyEmail, $companyName);
}
if (!is_null($company)) {
$replyName = $company->company_name;
$replyEmail = $company->company_email;
Config::set('app.logo', $company->logo_url);
}
$companyEmail = config('mail.verified') === true ? $companyEmail : $replyEmail;
$companyName = config('mail.verified') === true ? $companyName : $replyName;
return $build->from($companyEmail, $companyName)->replyTo($replyEmail, $replyName);
}
protected function modifyUrl($url)
{
return getDomainSpecificUrl($url, $this->company);
}
}