https://github.com/motdotla/sendgrid-php-batch-email
Example application showing how to send batch emails in PHP. Useful for when you want to send 1,000s of custom emails in one fell swoop.
https://github.com/motdotla/sendgrid-php-batch-email
Last synced: 6 months ago
JSON representation
Example application showing how to send batch emails in PHP. Useful for when you want to send 1,000s of custom emails in one fell swoop.
- Host: GitHub
- URL: https://github.com/motdotla/sendgrid-php-batch-email
- Owner: motdotla
- Created: 2013-09-28T18:29:10.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-09-28T19:27:04.000Z (about 12 years ago)
- Last Synced: 2025-04-09T22:09:07.583Z (6 months ago)
- Language: PHP
- Size: 105 KB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sendgrid-php-batch-email
Example application showing how to send batch emails in PHP. Useful for when you want to send 1,000s of custom emails in one fell swoop.
## Usage
```
php -f send.php
```## Setup
```bash
touch .env
```And paste in the following.
```
SENDGRID_USERNAME=yourusername
SENDGRID_PASSWORD=yourpassword
```Then run composer.
```bash
composer install
```Finally, run the file.
```
php -f send.php
```