When create activity, dont work “” or “\r\n” in the note inside activity dont work.
Can anybody help me.
Thanks in advance.
Paul
$cadena = array(
'subject'=> $mensaje,
'done'=>'0',
'type'=> $tipoActividad,
'user_id'=> $tUsuario,
'deal_id'=> $IDPipeCode,
'note'=> $MensajeAdjunto,
'done'=> $tDone
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $cadena);
$output = curl_exec($ch);
curl_close($ch);