Revision #5 has been created by Maurizio Domba Cerin on Feb 24, 2020, 7:15:24 AM with the memo:
deleted gist link - was down
« previous (#4)
Changes
Title
unchanged
MailGun Api Wrapper to send emails
Category
unchanged
How-tos
Yii version
changed
1.1
Tags
changed
email,mailgun, email
Content
changed
MailGun.php Class
I will keep updating this at GitHub here:
https://gist.github.com/vinaykrsharma/0729d75234fb9cc59e8c
```php
<?php
/**[...]
Add as a component in Yii config files either it could be `main.php` or `console.php` (not tested yet)
```php
<?php
// ...[...]
```php
<?php
$r = Yii::app()->mailgun->send($model->email, 'Hello',
"<p>Testing from Main App, for some <small style=\"color: green;\">awesomness</span>!</p>");
if($r) {
$r = json_decode($r);[...]