Pushsafer does not directly support specifying the subject as part of the parameters in the email address, such as +t="subject". However, there are alternative ways to set the subject when using Pushsafer.
Geometry Dash
Alternatives:
Specify the Subject in the Email Client:
Use the email's subject line in your email client as the Pushsafer notification subject. Pushsafer automatically picks up the subject of the email to use as the notification title.
Pushsafer REST API:
If you’re using the Pushsafer API instead of email, you can include the subject/title as a parameter (t) in the API request. Here's an example:
Code: Select all
curl -s \
--form-string "t=Your Notification Title" \
--form-string "m=Your Message" \
--form-string "s=17" \
--form-string "v=3" \
--form-string "i=41" \
--form-string "k=YourAuthToken" \
https://www.pushsafer.com/api
Set a Default Title in Pushsafer Settings:
If you frequently send notifications with a static subject, you can configure a default title in your Pushsafer account settings.
Unfortunately, adding a subject directly as a parameter in the email address isn’t supported due to the format restrictions of email addresses. For dynamic titles, the best approach is to use the email's subject field or the API.