PageRenderTime 26ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/libs/sendgrid-php/README.md

https://github.com/sendtogeo/Seo-Panel
Markdown | 249 lines | 174 code | 75 blank | 0 comment | 0 complexity | 733ac2daa0d8483543137781bd001811 MD5 | raw file
  1. [![BuildStatus](https://travis-ci.org/sendgrid/sendgrid-php.svg?branch=master)](https://travis-ci.org/sendgrid/sendgrid-php)
  2. Please see our announcement regarding [breaking changes](https://github.com/sendgrid/sendgrid-php/issues/290). Your support is appreciated!
  3. **This library allows you to quickly and easily use the SendGrid Web API v3 via PHP.**
  4. Version 5.X.X of this library provides full support for all SendGrid [Web API v3](https://sendgrid.com/docs/API_Reference/Web_API_v3/index.html) endpoints, including the new [v3 /mail/send](https://sendgrid.com/blog/introducing-v3mailsend-sendgrids-new-mail-endpoint).
  5. This library represents the beginning of a new path for SendGrid. We want this library to be community driven and SendGrid led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/sendgrid/sendgrid-php/issues) and [pull requests](https://github.com/sendgrid/sendgrid-php/blob/master/CONTRIBUTING.md) or simply upvote or comment on existing issues or pull requests.
  6. Please browse the rest of this README for further detail.
  7. We appreciate your continued support, thank you!
  8. # Table of Contents
  9. * [Installation](#installation)
  10. * [Quick Start](#quick_start)
  11. * [Usage](#usage)
  12. * [Use Cases](#use_cases)
  13. * [Announcements](#announcements)
  14. * [Roadmap](#roadmap)
  15. * [How to Contribute](#contribute)
  16. * [Troubleshooting](#troubleshooting)
  17. * [About](#about)
  18. <a name="installation"></a>
  19. # Installation
  20. ## Prerequisites
  21. - PHP version 5.6 or 7.0
  22. - The SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-php)
  23. ## Setup Environment Variables
  24. Update the development environment with your [SENDGRID_API_KEY](https://app.sendgrid.com/settings/api_keys), for example:
  25. ```bash
  26. echo "export SENDGRID_API_KEY='YOUR_API_KEY'" > sendgrid.env
  27. echo "sendgrid.env" >> .gitignore
  28. source ./sendgrid.env
  29. ```
  30. ## Install Package
  31. Add SendGrid to your `composer.json` file. If you are not using [Composer](http://getcomposer.org), you should be. It's an excellent way to manage dependencies in your PHP application.
  32. ```json
  33. {
  34. "require": {
  35. "sendgrid/sendgrid": "~5.4"
  36. }
  37. }
  38. ```
  39. Then at the top of your PHP script require the autoloader:
  40. ```bash
  41. require 'vendor/autoload.php';
  42. ```
  43. #### Alternative: Install package from zip
  44. If you are not using Composer, simply download and install the **[latest packaged release of the library as a zip](https://sendgrid-open-source.s3.amazonaws.com/sendgrid-php/sendgrid-php.zip)**.
  45. [** Download Packaged Library **](https://sendgrid-open-source.s3.amazonaws.com/sendgrid-php/sendgrid-php.zip)
  46. Then require the library from package:
  47. ```php
  48. require("path/to/sendgrid-php/sendgrid-php.php");
  49. ```
  50. Previous versions of the library can be found in the [version index](https://sendgrid-open-source.s3.amazonaws.com/index.html).
  51. ## Dependencies
  52. - The SendGrid Service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-php)
  53. - [php-HTTP-Client](https://github.com/sendgrid/php-http-client)
  54. <a name="quick_start"></a>
  55. # Quick Start
  56. ## Hello Email
  57. The following is the minimum needed code to send an email with the [/mail/send Helper](https://github.com/sendgrid/sendgrid-php/tree/master/lib/helpers/mail) ([here](https://github.com/sendgrid/sendgrid-php/blob/master/examples/helpers/mail/example.php#L22) is a full example):
  58. ```php
  59. <?php
  60. // If you are using Composer (recommended)
  61. require 'vendor/autoload.php';
  62. // If you are not using Composer
  63. // require("path/to/sendgrid-php/sendgrid-php.php");
  64. $from = new SendGrid\Email(null, "test@example.com");
  65. $subject = "Hello World from the SendGrid PHP Library!";
  66. $to = new SendGrid\Email(null, "test@example.com");
  67. $content = new SendGrid\Content("text/plain", "Hello, Email!");
  68. $mail = new SendGrid\Mail($from, $subject, $to, $content);
  69. $apiKey = getenv('SENDGRID_API_KEY');
  70. $sg = new \SendGrid($apiKey);
  71. $response = $sg->client->mail()->send()->post($mail);
  72. echo $response->statusCode();
  73. echo $response->headers();
  74. echo $response->body();
  75. ```
  76. The `SendGrid\Mail` constructor creates a [personalization object](https://sendgrid.com/docs/Classroom/Send/v3_Mail_Send/personalizations.html) for you. [Here](https://github.com/sendgrid/sendgrid-php/blob/master/examples/helpers/mail/example.php#L16) is an example of how to add to it.
  77. ### Without Mail Helper Class
  78. The following is the minimum needed code to send an email without the /mail/send Helper ([here](https://github.com/sendgrid/sendgrid-php/blob/master/examples/mail/mail.php#L28) is a full example):
  79. ```php
  80. <?php
  81. // If you are using Composer (recommended)
  82. require 'vendor/autoload.php';
  83. // If you are not using Composer
  84. // require("path/to/sendgrid-php/sendgrid-php.php");
  85. $request_body = json_decode('{
  86. "personalizations": [
  87. {
  88. "to": [
  89. {
  90. "email": "test@example.com"
  91. }
  92. ],
  93. "subject": "Hello World from the SendGrid PHP Library!"
  94. }
  95. ],
  96. "from": {
  97. "email": "test@example.com"
  98. },
  99. "content": [
  100. {
  101. "type": "text/plain",
  102. "value": "Hello, Email!"
  103. }
  104. ]
  105. }');
  106. $apiKey = getenv('SENDGRID_API_KEY');
  107. $sg = new \SendGrid($apiKey);
  108. $response = $sg->client->mail()->send()->post($request_body);
  109. echo $response->statusCode();
  110. echo $response->body();
  111. echo $response->headers();
  112. ```
  113. ## General v3 Web API Usage (With Fluent Interface)
  114. ```php
  115. <?php
  116. // If you are using Composer (recommended)
  117. require 'vendor/autoload.php';
  118. // If you are not using Composer
  119. // require("path/to/sendgrid-php/sendgrid-php.php");
  120. $apiKey = getenv('SENDGRID_API_KEY');
  121. $sg = new \SendGrid($apiKey);
  122. $response = $sg->client->suppressions()->bounces()->get();
  123. print $response->statusCode();
  124. print $response->headers();
  125. print $response->body();
  126. ```
  127. ## General v3 Web API Usage (Without Fluent Interface)
  128. ```php
  129. <?php
  130. // If you are using Composer (recommended)
  131. require 'vendor/autoload.php';
  132. // If you are not using Composer
  133. // require("path/to/sendgrid-php/sendgrid-php.php");
  134. $apiKey = getenv('SENDGRID_API_KEY');
  135. $sg = new \SendGrid($apiKey);
  136. $response = $sg->client->_("suppression/bounces")->get();
  137. print $response->statusCode();
  138. print $response->headers();
  139. print $response->body();
  140. ```
  141. <a name="usage"></a>
  142. # Usage
  143. - [SendGrid Docs](https://sendgrid.com/docs/API_Reference/index.html)
  144. - [Library Usage
  145. Documentation](https://github.com/sendgrid/sendgrid-php/tree/master/USAGE.md)
  146. - [Example Code](https://github.com/sendgrid/sendgrid-php/tree/master/examples)
  147. - [How-to: Migration from v2 to v3](https://sendgrid.com/docs/Classroom/Send/v3_Mail_Send/how_to_migrate_from_v2_to_v3_mail_send.html)
  148. - [v3 Web API Mail Send Helper](https://github.com/sendgrid/sendgrid-php/tree/master/lib/helpers/mail/README.md) - build a request object payload for a v3 /mail/send API call.
  149. <a name="use_cases">
  150. # Use Cases
  151. [Examples of common API use cases](https://github.com/sendgrid/sendgrid-php/blob/master/USE_CASES.md), such as how to send an email with a transactional template.
  152. <a name="announcements"></a>
  153. # Announcements
  154. Please see our announcement regarding [breaking changes](https://github.com/sendgrid/sendgrid-php/issues/290). Your support is appreciated!
  155. All updates to this library is documented in our [CHANGELOG](https://github.com/sendgrid/sendgrid-php/blob/master/CHANGELOG.md) and [releases](https://github.com/sendgrid/sendgrid-php/releases)
  156. <a name="roadmap"></a>
  157. # Roadmap
  158. If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/sendgrid/sendgrid-php/issues) and [pull requests](https://github.com/sendgrid/sendgrid-php/pulls). We would love to hear your feedback.
  159. <a name="contribute"></a>
  160. # How to Contribute
  161. We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/sendgrid/sendgrid-php/blob/master/CONTRIBUTING.md) guide for details.
  162. Quick links:
  163. - [Feature Request](https://github.com/sendgrid/sendgrid-php/blob/master/CONTRIBUTING.md#feature_request)
  164. - [Bug Reports](https://github.com/sendgrid/sendgrid-php/blob/master/CONTRIBUTING.md#submit_a_bug_report)
  165. - [Sign the CLA to Create a Pull Request](https://github.com/sendgrid/sendgrid-php/blob/master/CONTRIBUTING.md#cla)
  166. - [Improvements to the Codebase](https://github.com/sendgrid/sendgrid-php/blob/master/CONTRIBUTING.md#improvements_to_the_codebase)
  167. <a name="troubleshooting"></a>
  168. # Troubleshooting
  169. Please see our [troubleshooting guide](https://github.com/sendgrid/sendgrid-php/blob/master/TROUBLESHOOTING.md) for common library issues.
  170. <a name="about"></a>
  171. # About
  172. sendgrid-php is guided and supported by the SendGrid [Developer Experience Team](mailto:dx@sendgrid.com).
  173. sendgrid-php is maintained and funded by SendGrid, Inc. The names and logos for sendgrid-php are trademarks of SendGrid, Inc.
  174. ![SendGrid Logo](https://uiux.s3.amazonaws.com/2016-logos/email-logo%402x.png)