Skip to content

Latest commit

 

History

History
139 lines (93 loc) · 1.92 KB

message.md

File metadata and controls

139 lines (93 loc) · 1.92 KB

Message

Class for creating a message

Ntfy\Message()

Examples

Constants

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

Methods

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