Mass SMS via Campaign

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Laimonas
    Senior Member
    • May 2021
    • 197

    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".
  • lazovic
    Super Moderator
    • Jan 2022
    • 809

    #2
    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);

    Comment

    • rabii
      Active Community Member
      • Jun 2016
      • 1250

      #3
      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.
      Rabii
      Web Dev

      Comment

      Working...