2017 © Pedro Peláez
 

yii2-extension yii2-sendgrid

Sendgrid Mailer for Yii 2

image

bryglen/yii2-sendgrid

Sendgrid Mailer for Yii 2

  • Monday, December 19, 2016
  • by bryglen
  • Repository
  • 2 Watchers
  • 13 Stars
  • 21,968 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 20 Forks
  • 5 Open issues
  • 6 Versions
  • 5 % Grown

The README.md

Yii 2 bryglen SendGrid

Sendgrid Mailer for Yii 2, (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist bryglen/yii2-sendgrid "*"

or add, (*4)

"bryglen/yii2-sendgrid": "1.1.3"

to the require section of your composer.json file., (*5)

Usage

Once the extension is installed, simply use it in your code by :, (*6)

To use Mailer, you should configure it in the application configuration like the following,, (*7)

'components' => [
    ...
    'sendGrid' => [
        'class' => 'bryglen\sendgrid\Mailer',
        'username' => 'your_user_name',
        'password' => 'your password here',
        //'viewPath' => '@app/views/mail', // your view path here
    ],
    ...
],

To send an email, you may use the following code:, (*8)

$sendGrid = Yii::$app->sendGrid;
$message = $sendGrid->compose('contact/html', ['contactForm' => $form]);
$message->setFrom('from@domain.com')
    ->setTo($form->email)
    ->setSubject($form->subject)
    ->send($sendGrid);

The Versions

19/12 2016

dev-master

9999999-dev

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

extension yii2 sendgrid bryglen

19/12 2016

1.1.3

1.1.3.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

extension yii2 sendgrid bryglen

16/04 2015

1.1.2

1.1.2.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

extension yii2 sendgrid bryglen

17/02 2015

1.1.1

1.1.1.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

extension yii2 sendgrid bryglen

30/01 2015

1.1.0

1.1.0.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

extension yii2 sendgrid bryglen

24/11 2014

1.0.0

1.0.0.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

extension yii2 sendgrid bryglen