Announcement

Collapse
No announcement yet.

Mass SMS via Campaign

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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".

  • #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


    • #3
      Originally posted by Laimonas View Post
      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.

      Comment

      Working...
      X