$msg = array(
'message' => 'Сообщение',
'title' => 'Новое событие!',
);
$fields = array(
'registration_ids' => $registrationIds,
'data' => $msg
);
$headers = array(
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json; charset=utf-8\r\n'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://android.googleapis.com/gcm/send');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
curl_close($ch);
на устройство приходит push, но мне нужно прислать сообщение списком, чтобы с новой строки каждый пунк, на данный момент все приходит в одну строку и плюс нужно чтобы ссылка была в сообщении, может кто сталкивался?