forked from sendgrid/sendgrid-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendgrid-php.php
28 lines (24 loc) · 997 Bytes
/
sendgrid-php.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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.");
}
}
}