Hershy_s Posted May 27, 2013 Share Posted May 27, 2013 I would like to send my employees sms messages from Filemaker Go directly. The 1st command is Open URL [ “sms:” & Filter ( PhoneNumberField ; 0123456789) ] which would give the address of the SMS text message But in the body of the SMS text i would like to insert the contents of a field. Is that possible? Quote Link to comment Share on other sites More sharing options...
kirkrr Posted May 27, 2013 Share Posted May 27, 2013 Rather than detail it out here, there is an excellent tutorial here. http://www.ulearnit.com.au/filemaker/smstutorial/Sending%20SMS%20from%20FileMaker%20Pro.pdf Quote Link to comment Share on other sites More sharing options...
Hershy_s Posted May 28, 2013 Author Share Posted May 28, 2013 Your previous post is talking about sending a sms message from Filemaker pro. I would like to send it from my iphone by inserting into the body of the SMS text the contents of a field Quote Link to comment Share on other sites More sharing options...
Hershy_s Posted June 16, 2013 Author Share Posted June 16, 2013 I solved the problem but not in the prettiest fashion. I scripted a command to copy the contents of the message which I'm sending and then I Open URL [ “sms:” & Filter ( PhoneNumberField ; 0123456789) ] which would give the address of the SMS text message, then I paste the message into the body Quote Link to comment Share on other sites More sharing options...
TheCrow Posted May 19, 2015 Share Posted May 19, 2015 Here's a easier way to do it: If ( IsEmpty ( Contacts::Phone ) ; "" ; "sms:" & Contacts::Phone & "&Body=" & Contacts::SMS Message ) Quote Link to comment Share on other sites More sharing options...
eos Posted May 20, 2015 Share Posted May 20, 2015 If ( IsEmpty ( Contacts::Phone ) ; "" ; "sms:" & Contacts::Phone & "&Body=" & Contacts::SMS Message ) Why define an empty result when you can get it for free? If ( not IsEmpty ( Contacts::Phone ) ; "sms:" & Contacts::Phone & "&Body=" & Contacts::SMS Message ) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.