elsnet |
Organisation profile: Confero Call Centres |
[ ID = 4480 ] | Confero Ltd |
---|---|
Organisation name | Confero Call Centres |
Short name or acronym | Confero Ltd |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 1 Olympic Way |
Postal Code | HA9 0NP |
City | London |
Country | United Kingdom |
Phone | + 08451 204 203 |
Fax | + 08451 204 527 |
sales_(on)_confero.co.uk | |
Organisation URL | http://www.confero.co.uk |
Logo | Description |
Founded in 2001, Confero Ltd has years of experience providing Call Centre services to clients in many sectors throughout the UK. The company is UK based, with headquarters, in Wembley, London. Confero provides outsourced inbound and outbound Call and Contact Centre services and solutions, based on full time, overflow and out of hours requirements. These include DRTV advertising and response handling, general telephone call handling telesales and telemarketing. Other services include fulfilment, brochure request lines, helplines and credit card orderlines. Confero also offer automatic speech recognition, Interactive Voice Response (IVR) services. Confero is one of the few Outsourced Call Centres to be Authorised and Regulated by the FSA, and are also proud members of the DMA. | |
Contact | |
Name | Mr David Freedman |
Function | Managing Director |
Department | |
sales_(on)_confero.co.uk | |
Phone | + |
Fax | + |
Update this profile | Last update: 2012-05-11 17:08:11 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |