A. Yes, people can purchase external billing products without being a member.
It creates a contact for the record of the client and the sale is attached to the contact.
A. At the time of writing this Document
They charged US$0.01 a text, but you should go and see all their prices and policies at
twilio.comNOTE: TWILIO is a 3rd Party Provider and is not related or associated with WMT ! A. If by calls to action you mean that a member or contact takes an action and then an SMS message is sent to them then yes. You can either hire us to set it up for you as a
support request or if you have someone familiar with php you can do this with a few lines of code.
<?php
include("tools/Telecom.php");
$message = "Example SMS Message";
$cellNumber = "555-555-5555";
$memberAID = 1;
$myMember = new Member();
$myMember->loadMember($memberAID);
Telecom::addSMS($message, $cellNumber, $myMember, time());
?>
The standard member ~~ variables are converted when the actual message is sent.