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.
A. These are the 2 contact groups that come installed with the software. You can add as many contact groups as you want.
- Active contacts is the default contact group that contacts are added to if no other contact group is specified.
- Contacts that join as a member are transferred from whatever contact group they belong to into the converted contacts group.
By default the active contact group has autoresponder messages assigned to it and the converted one does not. The intention is so that when a member joins they stop receiving the marketing emails for presales contacts. You can setup a series of autoresponder messages for the converted contacts.