The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
|
Dial Phone.....
Posted: 09 Sep 09 4:19 AM
|
I know, once properly configured, you can make phone calls directly from Sales Logix. Does anyone know if it is possible to customise a similar function for sending text messages to a mobile phone? |
|
|
|
Re: Dial Phone.....
Posted: 09 Sep 09 12:30 PM
|
Perhaps Look on Exchange 2010 it has à built in SMS function |
|
|
|
Re: Dial Phone.....
Posted: 10 Sep 09 12:09 AM
|
I've used a company that supplied a DLL and an API to use their service. Below is the company which is in Australia but I imagine there would be similar everywhere. We used it to send out ticket info from support to techs.
http://redoxygen.com.au/ |
|
|
|
Re: Dial Phone.....
Posted: 10 Sep 09 6:36 AM
|
Thanks Leon i have had a look into Red Oxygen and it seems like a good solution. You wouldnt happen to know, or maybe you have it implemented, if you can get it so users can send text messages from within Saleslogix or does it have to be an Outlook function? |
|
|
|
Re: Dial Phone.....
Posted: 11 Sep 09 12:57 AM
|
Absolutely - that's what we did. You register their COM API and call it from within SLX. I managed to get it working way back in 5.2 so you should have no problem in any version after that. If you use Red Oxygen, their developers were good support if needed. I could probably dig up the code if you needed it (although it was a while ago!) |
|
|
|
Re: Dial Phone.....
Posted: 11 Sep 09 4:11 AM
|
If you could dig up the code Leon that would be fantastic!! I am still fairly new to SLX so any help would be great! Thanks. |
|
|
|
Re: Dial Phone.....
Posted: 13 Sep 09 6:44 PM
|
Code below. Just download their API or contact them. You should get a number of free trial messages.
***************** set SMSobj = CreateObject("REDOXYGENCOM.SMSInterface")
With SMSobj .email = "service@mycompany.com.au" 'for replies .AccountID = "RedOxygenAccountID" .Password = "RedOxygenPW" .ProxyType = 2 .ProxyAddress = "192.168.20.21" .ProxyPort = "8080"
end with
SMSobj.SendSMSMessage strmobilenumber , strmessage
if rtrim(cstr(SMSobj.ResponseText)) = "" then 'Write success history record or something else 'Show Error msgbox SMSobj.ResponseText,64,"SMS Error"
end if
set SMSobj = nothing
***************************** |
|
|
|