Jump to content
Salesforce and other SMB Solutions are coming soon. ×

SMS messaging


Hershy_s

Recommended Posts

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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • 3 weeks later...

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

Link to comment
Share on other sites

  • 1 year later...

Here's a easier way to do it:

 

If ( IsEmpty ( Contacts::Phone ) ; "" ; "sms:" & Contacts::Phone & "&Body=" & Contacts::SMS Message )

Link to comment
Share on other sites

If ( IsEmpty ( Contacts::Phone ) ; "" ; "sms:" & Contacts::Phone & "&Body=" & Contacts::SMS Message )

 

Why define an empty result when you can get it for free? :D

 

If ( not IsEmpty ( Contacts::Phone ) ; "sms:" & Contacts::Phone & "&Body=" & Contacts::SMS Message )

Link to comment
Share on other sites

This thread is quite old. Please start a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

Terms of Use