PHP code example of kiwilan / php-notifier
1. Go to this page and download the library: Download kiwilan/php-notifier library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kiwilan / php-notifier example snippets
use Kiwilan\Notifier\Notifier;
$notifier = new Notifier();
$discord = $notifier->discord('https://discord.com/api/webhooks/1234567890/ABCDEFGHIJKLMN0123456789')
->message('Hello, Discord!')
->user('Notifier', 'https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->send();
use Kiwilan\Notifier\Notifier;
$notifier = new Notifier();
$discord = $notifier->discord($webhook)
->rich('Rich advanced')
->title('Notifier')
->user('Notifier', 'https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->url('https://ewilan-riviere.com')
->author('Author', 'https://ewilan-riviere.com', 'https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->color('#3498db')
->timestamp()
->fields([
['name' => 'Field 1', 'value' => 'Value 1'],
['name' => 'Field 2', 'value' => 'Value 2'],
], inline: true)
->thumbnail('https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->image('https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->footer('Footer', 'https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->send();
use Kiwilan\Notifier\Notifier;
$notifier = new Notifier();
$mailConfig = $notifier->mail('smtp')
->mailer('smtp')
->host('mailpit')
->port(1025)
->username(null)
->password(null)
->encryption('tls');
$mailConfig->from('[email protected] ', 'Hello')
->to('[email protected] ', 'To')
->subject('Hello, Mail!')
->message('Hello, Mail!')
->html('<h1>Hello, Mail!</h1>')
->send();
use Symfony\Component\Mime\Address;
$mailConfig->from('[email protected] ', 'Hello')
->to([
new Address('[email protected] ', 'To1'),
new Address('[email protected] ', 'To2'),
])
->send();
$mailConfig->addAttachment('path/to/file.txt', 'file.txt')
->send();
use Kiwilan\Notifier\Notifier;
$notifier = new Notifier();
$slack = $notifier->slack('https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX')
->message('Hello, Slack!')
->send();
use Kiwilan\Notifier\Notifier;
$notifier = new Notifier();
$slack = $notifier->slack($webhook)
->attachment('*Hello, Slack!*')
->color('#36a64f')
->pretext('Optional pre-text that appears above the attachment block')
->author('Kiwilan', 'https://github.com/kiwilan')
->title('php-notifier', 'https://github.com/kiwilan/php-notifier')
->text('Optional text that appears within the attachment')
->fields([
[
'title' => 'Priority',
'value' => 'High',
'short' => false,
],
[
'title' => 'Priority',
'value' => 'High',
'short' => false,
],
])
->imageUrl('https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->footer('Slack API', 'https://raw.githubusercontent.com/kiwilan/php-notifier/main/docs/banner.jpg')
->timestamp(new DateTime())
->send();
use Kiwilan\Notifier\Notifier;
$notifier = new Notifier();
$http = $notifier->http('https://jsonplaceholder.typicode.com/posts')
->method('POST')
->send();
$statusCode = $http->getStatusCode();
$body = $http->getResponseBody();
$headers = $http->getResponseHeaders();
use Kiwilan\Notifier\Notifier;
$notifier = new Notifier();
$stream = $notifier->client('stream') // default
->discord($webhook)
->message('Hello, Discord!')
->send();
$curl = $notifier->client('curl') // use curl instead of stream
->discord($webhook)
->message('Hello, Discord!')
->send();
$guzzle = $notifier->client('guzzle') // use guzzle instead of stream (need guzzlehttp/guzzle package)
->discord($webhook)
->message('Hello, Discord!')
->send();
$notifier = new Notifier();
$discord = $notifier->discord($webhook)
->message('Hello, Discord!')
->send();
if ($discord->isSuccess()) {
echo 'Message sent!';
}
bash
composer