I just found out that you can remotely configure the settings of the phone. Need to implement it.

This is sample code to make this happen. Pretty cool.

$settings = array("server_url"=>"".$SERVER."", "password"=>"password", "outgoing_interval"=>"15", "keep_in_inbox"=>true, "call_notifications"=>true,"forward_sent"=>true,"settings_version"=>"7","enabled"=>true);

$events = array();

if ($settings)
{
$events[] = new EnvayaSMS_Event_Settings($settings);
}

echo $request->render_response($events);