|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4707 ] | 3C Contact Services |
|---|---|
| Organisation name | 3C Contact Services |
| Short name or acronym | 3C Contact Services |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | 7000 Pine Valley Drive |
| Postal Code | L4L 2V5 |
| City | Vaughan |
| Country | Canada |
| Phone | +1 8883532335 |
| Fax | + |
| marketing_(on)_3ccontactservices.com | |
| Organisation URL | http://www.3ccontactservices.com/ |
| Logo | Description |
![]() |
3C Contact Services provides customized inbound and outbound solutions for small and medium businesses in Canada and the US. Our dedicated and well-trained customer support specialist team provides excellent services in a timely and cost-effective manner. Our contact center solution is designed to support our clients in areas like Customer service, Customer Care, Business Process Outsourcing, Financial and Health Publishing, Sales & Support, Crisis Management, E-Mail Management, Customer Retention, B2B/B2C, Billing Explanations & General Assistance. |
| Contact | |
| Name | Mr. Damian Reyes |
| Function | Department Head |
| Department | Call Center Operations |
| marketing_(on)_3ccontactservices.com | |
| Phone | + |
| Fax | + |
|
|
Last update: 2014-12-11 10:55:34 #!/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" |