Class for creating a message
Ntfy\Message()
- Send a message
- Send a message with a markdown body
- Send a message with a view action button
- Send a message to a server protected with user authentication
- Send a message to a server protected with token authentication
Maximum message priority
Message::PRIORITY_MAX
High message priority
Message::PRIORITY_HIGH
Default message priority
Message::PRIORITY_DEFAULT
Low message priority
Message::PRIORITY_LOW
Minimum message priority
Message::PRIORITY_MIN
Set message topic
topic(string $topic): void
Set message title
title(string $title): void
Set message priority
priority(int $priority): void
Set plaintext message body
body(string $body): void
Set markdown message body
markdownBody(string $body): void
Set message tags
tags(array $tags): void
Set scheduled delivery for the message
schedule(string $delay): void
Set URL to open when message notification is clicked
clickAction(string $url): void
Set email address for sending a email notification
email(string $email): void
Set URL for message notification icon
icon(string $url): void
Set a file attachment using a URL
attachURL(string $url, string $name = ''): void
Set an action button
action(Action $action): void
Disable caching for this message
disableCaching(): void
Disable firebase for this message
disableFirebase(): void
Get the data to be sent as JSON to the server.
getData(): array