value pairs. If $params is set * as null, all mail_settingss will be returned * * @return array (referance) Array of matching mail_settingss * {@getfields mail_settings_get} * @access public */ function civicrm_api3_mail_settings_get($params) { return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); } /** * delete an existing mail_settings * * This method is used to delete any existing mail_settings. id of the group * to be deleted is required field in $params array * * @param array $params array containing id of the group * to be deleted * * @return array api result array * {@getfields mail_settings_delete} * @access public */ function civicrm_api3_mail_settings_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); }