Configure outgoing SMS connector
This page describes how to set up an SMS connector for SuperOffice.
Pre-requisites
You need an account with the SMS provider to obtain a username and password to connect to their service.
Supported connectors:
Steps
Select Marketing in the navigator.
Go to the Mailings tab.
Click the Settings button in the lower-right corner.
Choose your SMS provider from the Module list.
Enter default country code and sender.
In the Plugin configuration box, add the following provider-specific settings. Then click OK.
cm_serviceId =
cm_username =
cm_password =

Note
In the legacy Service client, go to System > SMS to find the settings.
Testing the service
To test that the service is set up correctly, you can create a new request, add an SMS recipient and wait for the SMS service to send the message (within a minute or 2).
It is also possible to test using a simple CRMScript that connects directly to the SMS service using NetServer.
NSMessagingAgent agent;
NSOutgoingMessage[] messages;
NSOutgoingMessage msg;
msg.SetTo("+47xxxxxxxx");
msg.SetFrom("MyCompany");
msg.SetContent("Hi friend! How are you?");
messages.pushBack(msg);
NSMessageDeliveryStatus[] receipts = agent.SendMessages("MySmsPluginName", messages);
This method of sending will not create any entries in the SMS outbox, and the SMS is sent immediately to NetServer, not when ejournalcron.exe runs (usually once every minute).





