2017 © Pedro Peláez
 

yii2-extension yii2-sendgrid

Sendgrid Mailer for Yii 2

image

shershennm/yii2-sendgrid

Sendgrid Mailer for Yii 2

  • Tuesday, July 24, 2018
  • by shershennm
  • Repository
  • 1 Watchers
  • 3 Stars
  • 9,928 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 20 Forks
  • 0 Open issues
  • 9 Versions
  • 7 % Grown

The README.md

Yii 2 shershennm SendGrid

Sendgrid Mailer for Yii 2, (*1)

forked from bryglen/yii2-sendgrid, (*2)

3.1.0 update, (*3)

Methods which returned \SendGrid\Mail\EmailAddress or array with this type, now returns plain email string or ['email' => 'name'] array or array with this values., (*4)

Installation

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

Either run, (*6)

php composer.phar require --prefer-dist shershennm/yii2-sendgrid "^3.1"

or add, (*7)

"shershennm/yii2-sendgrid": "^3.1"

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

Usage

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

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

'components' => [
    ...
    'sendGrid' => [
        'class' => 'shershennm\sendgrid\Mailer',
        'apiKey' => 'your api key',
    ]
    ...
],

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

$sendGrid = Yii::$app->sendGrid;
$message = $sendGrid->compose('contact/html', ['contactForm' => $form])
$message->setFrom('from@domain.com')
    ->setTo($form->email)
    ->setSubject($form->subject)
    ->send($sendGrid);
    //also you can use sendgrid substitutions
    ->setSendGridSubstitution('template id', [
        ':var1' => 'var1value',
        ':var2' => 'var2value',
    ]);

The Versions

24/07 2018

dev-sendgrid7.0

dev-sendgrid7.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar shershennm

extension yii2 sendgrid shershennm

10/04 2016

dev-master

9999999-dev

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

by Avatar shershennm

extension yii2 sendgrid shershennm

10/04 2016

2.0.2

2.0.2.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

by Avatar shershennm

extension yii2 sendgrid shershennm

21/12 2015

2.0.0

2.0.0.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

by Avatar shershennm

extension yii2 sendgrid shershennm

18/11 2015

1.1.4

1.1.4.0

Sendgrid Mailer for Yii 2

  Sources   Download

MIT

The Requires

 

by Avatar shershennm

extension yii2 sendgrid shershennm

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