diff options
Diffstat (limited to 'lib/SendGridCompatibility/SendGrid.php')
-rw-r--r-- | lib/SendGridCompatibility/SendGrid.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/SendGridCompatibility/SendGrid.php b/lib/SendGridCompatibility/SendGrid.php index 7f8697a..e5b21e6 100644 --- a/lib/SendGridCompatibility/SendGrid.php +++ b/lib/SendGridCompatibility/SendGrid.php @@ -2,14 +2,15 @@ namespace SparkPost\SendGridCompatibility; use SparkPost\SparkPost; -use SparkPost\SendGridCompatibility\Email; -class SendGrid{ +class SendGrid +{ private $sparky; - public function __construct($username, $password, $options = null, $httpAdapter) { - //username isn't used in our system - $opts = array('key'=>$password); + 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); } @@ -17,8 +18,10 @@ class SendGrid{ $this->sparky = new SparkPost($httpAdapter, $opts); } - public function send(Email $email) { + public function send(Email $email) + { $this->sparky->transmission->send($email->toSparkPostTransmission()); } } + ?> |