Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.7 KB

README.md

File metadata and controls

53 lines (37 loc) · 1.7 KB

Swiftmailer SparkPost Driver

Latest Version on Packagist Total Downloads Open Issues License

By Simon Hampel

Description

Standalone implementation of Laravel's SparkPost Mail Driver from illuminate/mail - provides a Swift Mailer v6 implementation for SparkPost.

This package is inspired by: https://github.com/vemcogroup/laravel-sparkpost-driver which uses the SparkPost mail driver from Laravel 5.8.x

Installation

You can install the package via composer:

composer require hampel/swiftmailer-sparkpost

Usage

The SparkPost options available are defined in the API: SparkPost options

$sparkpostOptions = [
	'options' => [
		'open_tracking' => false,
		'click_tracking' => true,
		'transactional' => true,
	],
	'campaign_id' => 'foo',
];

$transport = new SparkPostTransport(
	new GuzzleHttp\Client, 
	'MYSPARKPOSTAPIKEY', 
	$sparkpostOptions
);

// create a new Swift_Message
$message = ...

$result = $transport->send($message);