PHP code example of camuthig / courier-sendgrid
1. Go to this page and download the library: Download camuthig/courier-sendgrid library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
camuthig / courier-sendgrid example snippets
use Courier\SendGridCourier;
use PhpEmail\EmailBuilder;
use PhpEmail\Content\SimpleContent;
$key = getenv('SENDGRID_KEY');
$courier = new SendGridCourier(new \SendGrid($key));
$email = EmailBuilder::email()
->withSubject('Welcome!')
->withContent(SimpleContent::text('Start your free trial now!!!'))
->from('[email protected]')
->to('[email protected]')
->build();
$courier->deliver($email);