Mass SMS via Campaign

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • rabii
    replied
    Originally posted by Laimonas
    Hi there,

    It would be nice to have the possibility to send SMS via Campaigns. As there are SMS integration modules it would be nice to have the possibility to send bulk SMS via Campaigns as we do now by sending "Mass Email", there could be an additional functionality "Mass SMS".
    i guess this should posted as a feature request. it will come handy with the email campaigns.

    Leave a comment:


  • lazovic
    replied
    Hi Laimonas,

    As a workaround, you can use a Workflow (Advanced Pack extension function) with a Lead (Contact) Target Entity and a Scheduled Trigger Type, which will send SMS to leads (contacts) from the specified Report at the specified time using the Execute Formula Script Action with this formula:
    Code:
    $smsId = record\create('Sms',
                           'to', phoneNumber,
                           'from', '+1 000 111 222', // example
                           'body', 'Insert text here.'
                           );
    ext\sms\send($smsId);

    Leave a comment:


  • Laimonas
    started a topic Mass SMS via Campaign

    Mass SMS via Campaign

    Hi there,

    It would be nice to have the possibility to send SMS via Campaigns. As there are SMS integration modules it would be nice to have the possibility to send bulk SMS via Campaigns as we do now by sending "Mass Email", there could be an additional functionality "Mass SMS".
Working...