vulcandigital/silverstripe-sendgrid

A module to assist developers in sending template emails via SendGrid

Installs: 373

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 3

Forks: 5

Open Issues: 1

Type:silverstripe-vendormodule

1.3.1 2018-05-03 05:57 UTC

This package is auto-updated.

Last update: 2024-04-18 18:46:14 UTC


README

Build Status codecov Latest Stable Version Total Downloads License

silverstripe-sendgrid

A module to assist developers in sending template emails via SendGrid

Requirements

  • silverstripe/framework: ^4.0

Installation

composer require vulcandigital/silverstripe-sendgrid

Configuration

mysite/_config/sendgrid.yml:

Vulcan\SendGrid\SendGrid:
  api_key: 'REPLACE-WITH-YOUR-API-KEY'

Usage

$sendGrid = \Vulcan\SendGrid\SendGrid::create();
$sendGrid->setSubject("We have a sale for you!");
$sendGrid->setFrom('marketing@example.com');
$sendGrid->setFromName('My Site');
$sendGrid->setReplyTo('sales@example.com');
$sendGrid->addRecipient('reece@vulcandigital.co.nz', 'Reece Alexander', [
    ':salutation' => 'Mr',
    ':button_link' => 'https://example.com/store/offer?id=aASdGdjnklashewjk12321hjkasd213'
]);
$sendGrid->setBody("<p>We thought you'd like this awesome t-shirt!</p>");
$sendGrid->setTemplateId('your-template-id');
$sendGrid->addAttachment(Image::get()->first());
$sendGrid->send();

You can add as many recipients as you want.

Substitutions & Custom Arguments

Substitutions and custom arguments are practically the same thing, the only difference is that custom arguments are applied globally regardless of the recipient where substitutions are variable replacements that can differ per recipient.

Substitutions will always override any custom argument

Substitutions

Substitutions are variables that can be replaced per recipient

$sendGrid->addRecipient('john@doe.com', 'John Doe', [
    ':salutation' => 'Mr',
    ':first_name' => 'John',
    ':last_name' => 'Doe'
]);
$sendGrid->addRecipient('jane@doe.com', 'Jane Doe', [
    ':salutation' => 'Mrs',
    ':first_name' => 'Jane',
    ':last_name' => 'Doe'
]);

Custom Arguments

Custom arguments are applied globally across all recipients unless a substitution has overridden it

$sendGrid->addCustomArg(':year', DBDatetime::now()->Year());

Attachments

You can add as many attachments as you want totalling up to 30 MB. The attachment must be a File object or a subclass of it such as itself or Image.

$file = Image::get()->first();
$sendGrid->addAttachment($file, $filename = null, $forcePublish = false); 

or you can use an absolute path to a file instead:

$sendgrid->addAttachment('/public_html/path/to/image.png'));
$sendgrid->addAttachment(Controller::join_links(Director::baseFolder(), '/path/to/image2.png'));

If you provide $filename, make sure you provide the correct extension as well to prevent any errors

If the provided file is a File object and $forcePublish is set to true and the File you have provided has not been published, it will be forcibly published.

Scheduling

You can schedule emails to be sent at a later date:

$sendGrid->setScheduleTo(DBDatetime::now()->getTimestamp() + 3600); // Schedule to send in 1 hour

Important: Ensure that you have specified your correct timezone in your SendGrid account's settings, otherwise this may have unexpected results.

Your database timezone should also match the timezone you have specified in your account. See Core Environment Variables for information on how to modify the timezone used by your database.

It is always advised when dealing with dates and times in SilverStripe to use the functionality it has provided you as shown in the example above.

Sandbox Mode

$sendGrid->setSandboxMode(true);

If everything is OK, $sendGrid->send() will return true otherwise an error will be thrown.

License

BSD-3-Clause - Vulcan Digital Ltd