Hi, I'm just started with EspoCRM and while creating a Task want to set reminders in this task (as in code below). Task is created, but reminder is not set. Thanks in advance.
PHP Code:
$newtask ->set(array(
'name' => 'Name',
'priority' => 'High',
'status' => 'Started',
'dateStartDate' => date("Y-m-d"),
'dateEnd' => date("Y-m-d H:i:s", mktime(0, 0, 0, date("m")+1, date("d"), date("Y"))),
'description' => 'Description',
'reminders' => array('type' => 'Popup', 'seconds' => 0)
));
Comment