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
- Host: GitHub
- URL: https://github.com/sendgrid/sendgrid-php-sample-app
- Owner: sendgrid
- Created: 2013-12-12T13:22:09.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T14:25:15.000Z (over 7 years ago)
- Last Synced: 2024-04-08T17:29:22.301Z (almost 2 years ago)
- Language: PHP
- Size: 21.5 KB
- Stars: 1
- Watchers: 199
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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