An open API service indexing awesome lists of open source software.

https://github.com/sendgrid/sendgrid-php-sample-app

sendgrid-php-sample-app
https://github.com/sendgrid/sendgrid-php-sample-app

Last synced: 7 months ago
JSON representation

sendgrid-php-sample-app

Awesome Lists containing this project

README

          

SendGrid Sample App - PHP
======================

This git repository helps you to send emails quickly and easily through SendGrid using PHP.

Create an SendGrid account at http://sendgrid.com/pricing.html

Clone SendGrid application on your local machine


git clone https://github.com/sendgrid/sendgrid-php-sample-app

###Configuration###

Configure `index.php` file with your information:

Update the *<sendgrid_username>* and *<sendgrid_password>* with your SendGrid credentials.
```php
$sendgrid_username = '';
$sendgrid_password = '';
```
Update the *<from_address>* with your email address
```php
$from_email = "";
```

Upload your application to your server