Skip to content

Latest commit

 

History

History
89 lines (60 loc) · 3.09 KB

TROUBLESHOOTING.md

File metadata and controls

89 lines (60 loc) · 3.09 KB

If you have a non-library SendGrid issue, please contact our support team.

If you can't find a solution below, please open an issue.

Table of Contents

Migrating from v2 to v3

Please review our guide on how to migrate from v2 to v3.

Continue Using v2

Here is the last working version with v2 support.

Using composer:

{
  "require": {
    "sendgrid/sendgrid": "~3.2"
  }
}

Download packaged zip here.

Testing v3 /mail/send Calls Directly

Here are some cURL examples for common use cases.

Error Messages

To read the error message returned by SendGrid's API:

try {
    $response = $sendgrid->client->mail()->send()->post($mail);
} catch (Exception $e) {
    echo 'Caught exception: ',  $e->getMessage(), "\n";
}

Versions

We follow the MAJOR.MINOR.PATCH versioning scheme as described by SemVer.org. Therefore, we recommend that you always pin (or vendor) the particular version you are working with to your code and never auto-update to the latest version. Especially when there is a MAJOR point release, since that is guarenteed to be a breaking change. Changes are documented in the CHANGELOG and releases section.

Environment Variables and Your SendGrid API Key

All of our examples assume you are using environment variables to hold your SendGrid API key.

If you choose to add your SendGrid API key directly (not recommended):

$apiKey = getenv('SENDGRID_API_KEY');

becomes

$apiKey = 'SENDGRID_API_KEY';

In the first case SENDGRID_API_KEY is in reference to the name of the environment variable, while the second case references the actual SendGrid API Key.

Using the Package Manager

We upload this library to Packagist whenever we make a release. This allows you to use composer for easy installation.

In most cases we recommend you download the latest version of the library, but if you need a different version, please use:

{
  "require": {
    "sendgrid/sendgrid": "~X.X.X"
  }
}