immobiliare / ApnsPHP

ApnsPHP: Apple Push Notification & Feedback Provider
BSD 3-Clause "New" or "Revised" License
1.43k stars 454 forks source link

How to add title? #150

Closed ghost closed 7 years ago

ghost commented 7 years ago

How can I add a title to my APNS notification? I looked at the files and couldn't find anything for this

R3TSU commented 7 years ago

Have you tried using this class instead?

ApnsPHP_Message_Custom

and set the title using

$message->setTitle("HelloThere");

adc91 commented 6 years ago

@R3TSU thanks for the solution