blob: e5b21e675d9d9c8dda3612f3ed35bd7cc2425b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
namespace SparkPost\SendGridCompatibility;
use SparkPost\SparkPost;
class SendGrid
{
private $sparky;
public function __construct($username, $password, $options = null, $httpAdapter)
{
// username isn't used in our system
$opts = array('key' => $password);
if (!is_null($options)) {
$opts = array_merge($opts, $options);
}
$this->sparky = new SparkPost($httpAdapter, $opts);
}
public function send(Email $email)
{
$this->sparky->transmission->send($email->toSparkPostTransmission());
}
}
?>
|