0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.145.14.239


Current Path : /var/www/html/univadmin/sendgrid-php/
Upload File :
Current File : /var/www/html/univadmin/sendgrid-php/sendgrid-php.php

<?php
/**
 * This file is used to load the Composer autoloader if required.
 */

use SendGrid\Mail\Mail;

// Define path/existence of Composer autoloader
$composerAutoloadFile = __DIR__ . '/vendor/autoload.php';
$composerAutoloadFileExists = (is_file($composerAutoloadFile));

// Can't locate SendGrid\Mail\Mail class?
if (!class_exists(Mail::class)) {
    // Suggest to load Composer autoloader of project
    if (!$composerAutoloadFileExists) {
        //  Can't load the Composer autoloader in this project folder
        error_log("Composer autoloader not found. Execute 'composer install' in the project folder first.");
    } else {
        // Load Composer autoloader
        require_once $composerAutoloadFile;

        // If desired class still not existing
        if (!class_exists(Mail::class)) {
            // Suggest to review the Composer autoloader settings
            error_log("Error finding SendGrid classes. Please review your autoloading configuration.");
        }
    }
}