Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use League\HTMLToMarkdown\HtmlConverter;
|
|
|
|
class CourseNotificationMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $email;
|
|
public $notification;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($notification)
|
|
{
|
|
$this->notification = $notification;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
|
|
$converter = new HtmlConverter();
|
|
|
|
$this->notification->message = $converter->convert($this->notification->message);
|
|
|
|
$link = env('APP_URL_FRONTEND', 'http://localhost:3000') . "/manager/learning/" . $this->notification->learning_product->slug;
|
|
|
|
return $this->from(env('MAIL_FROM_ADDRESS'))
|
|
->with([
|
|
'notification' => $this->notification,
|
|
'link' => $link
|
|
])
|
|
->markdown('emails.courses.notification');
|
|
}
|
|
}
|