Skip to content

Instantly share code, notes, and snippets.

@lesstif
Created February 29, 2020 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lesstif/f9effd5e9ff5b20764682e783301b49e to your computer and use it in GitHub Desktop.
Save lesstif/f9effd5e9ff5b20764682e783301b49e to your computer and use it in GitHub Desktop.
PHP laravel slack notification example
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Notifications\Notification;
class TaskSchedulerRan extends Notification implements ShouldQueue
{
use Queueable;
private $taskName;
private $endTime;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct(string $taskName, Carbon $endTime)
{
$this->taskName = $taskName;
$this->endTime = $endTime;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['slack'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
public function toSlack($notifiable)
{
return (new SlackMessage)
->from('Webhookbot', ':ghost:')
->to('#task-scheduling')
->content("scheduler $this->taskName 이 $this->endTime 에 완료되었습니다.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment