|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3342 ] | EasyCall |
---|---|
Organisation name | EasyCall Communications |
Short name or acronym | EasyCall |
Organisation type | 1 Private company |
Activity type | 9 Call center without specific expertise in Lang+Speech |
Address | 53rd Putul lui Zamfir |
Postal Code | |
City | Bucharest |
Country | Romania |
Phone | + +40212315118 |
Fax | + +40212315118 |
contact_(on)_easycall.ro | |
Organisation URL | http://www.easycall.ro |
Logo | Description |
![]() |
Located in Romania, EasyCall Communications is running its own contact center providing call center services for companies seeking to outsource (onshore and offshore outsourcing) these processes. We have experience in the telecommunication field, in the pharmaceutical field, in the electronic retail field and also in the public institutions field. We provide both incoming and outgoing call services, offering also contact center capabilities (email and fax receiving / sending) and also web chat. Our call center has multilanguage capabilities (English, French, German, Italian, Spanish). |
Contact | |
Name | Mr. Vladimir Sterescu |
Function | Manager |
Department | |
contact_(on)_easycall.ro | |
Phone | + +400212315118 |
Fax | + +400212315118 |
![]() |
Last update: 2004-04-16 12:43:21 #!/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" |