SlackMessage
class SlackMessage
Properties
string | $level | The "level" of the notification (info, success, warning, error). |
|
string|null | $username | The username to send the message from. |
|
string|null | $icon | The user emoji icon for the message. |
|
string|null | $image | The user image icon for the message. |
|
string|null | $channel | The channel to send the message on. |
|
string | $content | The text content of the message. |
|
bool | $linkNames | Indicates if channel names and usernames should be linked. |
|
array | $attachments | The message's attachments. |
|
array | $http | Additional request options for the Guzzle HTTP client. |
Methods
Indicate that the notification gives information about a successful operation.
Indicate that the notification gives information about a warning.
Indicate that the notification gives information about an error.
Set a custom username and optional emoji icon for the Slack message.
Set a custom image icon the message should use.
Set the Slack channel the message should be sent to.
Set the content of the Slack message.
Get the color for the message.
Find and link channel names and usernames.
Set additional request options for the Guzzle HTTP client.
Details
at line 77
$this
success()
Indicate that the notification gives information about a successful operation.
at line 89
$this
warning()
Indicate that the notification gives information about a warning.
at line 101
$this
error()
Indicate that the notification gives information about an error.
at line 115
$this
from(string $username, string|null $icon = null)
Set a custom username and optional emoji icon for the Slack message.
at line 132
$this
image(string $image)
Set a custom image icon the message should use.
at line 145
$this
to(string $channel)
Set the Slack channel the message should be sent to.
at line 158
$this
content(string $content)
Set the content of the Slack message.
at line 171
$this
attachment(Closure $callback)
Define an attachment for the message.
at line 185
string
color()
Get the color for the message.
at line 202
$this
linkNames()
Find and link channel names and usernames.
at line 215
$this
http(array $options)
Set additional request options for the Guzzle HTTP client.