|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3545 ] | VoiceShot |
---|---|
Organisation name | VoiceShot |
Short name or acronym | VoiceShot |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 30150 Telegraph Road |
Postal Code | 48025 |
City | Bingham Farms, MI |
Country | United States |
Phone | +800 962-0126 |
Fax | + |
sales_(on)_voiceshot.com | |
Organisation URL | http://www.voiceshot.com/public/outboundcalls.asp |
Logo | Description |
![]() |
VoiceShot Outbound voice broadcast and voice mail broadcast allows you to instantly send hundreds or even thousands of interactive phone calls with ease while managing the entire process right from the Web. Instantly send alerts, notifications, reminders, political calls, product updates, get out the vote - GOTV - messages, interactive polls or surveys with ease right from the Web. Your free VoiceShot account guides you through the process of recording and storing your messages, managing your call lists, scheduling delivery as well as viewing and downloading real-time call and caller key press results. VoiceShot is great for beginners and seasoned professionals alike. Beginners will love VoiceShot's easy to use voice broadcasting interface that guides you through the entire process with a Campaign Checklist as well as tips from the Campaign Expert. Seasoned pros will love VoiceShot's advanced features such as recipient targeting, call monitoring, scheduling, controlling the rate of call delivery and customized text to speech (TTS). |
Contact | |
Name | VoiceShot Sales |
Function | |
Department | |
sales_(on)_voiceshot.com | |
Phone | +800 926-0126 |
Fax | + |
![]() |
Last update: 2008-05-20 15:06:28 #!/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" |