diff options
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | lib/SendGrid.php | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/composer.json b/composer.json index a01c458..81b6e17 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "keywords": ["SendGrid", "sendgrid", "email", "send", "grid"], "require": { "php": ">=5.3", - "sendgrid/php-http-client": "3.0.0" + "sendgrid/php-http-client": "3.1.0" }, "require-dev": { "phpunit/phpunit": "4.*", diff --git a/lib/SendGrid.php b/lib/SendGrid.php index 71d8f32..1f6bdc4 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -34,7 +34,6 @@ class SendGrid public function __construct($apiKey, $options = array()) { $headers = array( - 'Content-Type: application/json', 'Authorization: Bearer '.$apiKey, 'User-Agent: sendgrid/' . $this->version . ';php' ); |