Use text messages and phone calls to alert sales reps of new leads from a website.
Converts online leads into clients
Confirms home showing requests
Arranges device repairs quickly
Trulia reduces the time it takes to respond to online leads. The odds of successfully contacting an online lead are 100 times higher if the lead hears from an agent within five minutes of submitting an online form. With programmable voice and SMS, real estate agents are instantly connected on a call with a new lead, or sent an SMS with lead details.
View Customer StoryTalk to Sales
ShowingTime agents respond to prospects no matter where they are. Text alerts are sent to agents the instant a lead comes in for home showings. This means faster sales and a better sales experience. Professionals use the phones they already have.
Talk to Sales
iCracked instantly notifies technicians of new service opportunities. With text and picture messages of damaged devices, the iCracked network of over 1,000 technicians manages leads and responds swiftly. Conversion rates are improved and customers satisfied.
View Customer StoryTalk to Sales
Improve response time by immediately notifying partners and service professionals of new leads no matter where they are.
Add escalation logic to a CRM. Leads that sit too long can automatically be routed, along with an SMS alert, to a new agent.
Integrate into an existing web server stack and database. Twilio speaks standard HTTP and works with any language.
Give it a go. We'll never share your phone number with anyone.
Send text and picture-message lead alerts with customized data.
Deliver alerts with an automated outbound call with rich functionality.
Intelligently route leads based on skills and location.
Track all SMS, MMS, and call status to identify when delivery fails. Automatically send an alternate message so sales professionals never miss a lead.
Make calls using text-to-speech (TTS) in 26 languages and dialects. Send SMS using characters in any language.
Get started without upfront investments. Pay per-minute for phone calls and per-message for SMS and MMS.
$AccountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; $AuthToken = "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY";
// Instantiate a new Twilio Rest Client
$client = new Services_Twilio($AccountSid, $AuthToken);
/* Your Twilio Number or Outgoing Caller ID */
$from = "NNNNNNNNNN";
// make an associative array of server admins. Feel free to change/add your // own phone number and name here.
$people = array( "4158675309" => "Johnny", "4158675310" => "Helen", "4158675311" => "Virgil", );
// Iterate over all admins in the $people array. $to is the phone number, // $name is the user's name
foreach ($people as $to => $name) {// Send a new outgoing SMS
$body = "A new lead is available in San Francisco. Reply 'yes' to accept"; $client->account->sms_messages->create($from, $to, $body); echo "Sent message to $name"; }