Tony S
My feedback
17 results found
-
14 votesTony S supported this idea ·
-
9 votesTony S supported this idea ·
-
4 votes
An error occurred while saving the comment -
1 vote
An error occurred while saving the comment Tony S commentedThat is security restriction imo.
-
23 votesTony S supported this idea ·
-
7 votes
An error occurred while saving the comment Tony S commentedYou can use SELECT block and attach it to the TO/CC field. There must be the only single field returned by the SELECT statement - with emails. They will be concatenated into a single string and used for your email TO or CC.
-
16 votesTony S supported this idea ·
-
106 votes
An error occurred while saving the comment Tony S commented -
57 votesTony S supported this idea ·
-
29 votes
An error occurred while saving the comment Tony S commentedThis can be configured using new feature of sending email from triggers
The setup of such trigger will be a bit tricky, but the problem will be solved -
18 votesTony S supported this idea ·
-
1 vote
An error occurred while saving the comment Tony S commentedinteresting thought
so, you want to collect email addresses in the caspio table, group them to categories and then access them from your Outlook application as mailing group?
Hmm.. I believe you can do it by exporting your contact list to CSV and import it into Outlook https://support.office.com/en-us/article/import-contacts-to-outlook-bb796340-b58a-46c1-90c7-b549b8f3c5f8 -
27 votes
An error occurred while saving the comment Tony S commentedHi, I get used Export of my table and then Import it with the 'update design' option to solve exactly the same case.
probably that trick can help you too -
9 votes
An error occurred while saving the comment Tony S commentedtriggered actions does work for me in the bulk update. Contact someone from support, probably you've configured it wrong
The thing is that Triggered Action is working with the whole scope of changed data at once. This means that any of the action in the trigger will be applied to the whole scope of data (not record-by-record) and will be fired only once per bulk update. -
2 votes
An error occurred while saving the comment Tony S commentedit can be achieved by combining (using JOIN) two tables - your_table and #inserted for the On-Update event, and put your_table.user_id not equal #inserted.user_id in WHERE section. This gives you access to an old and a new value even.
So the action will be run only if that field (user_id) is changed if you will attach such kind of JOIN to it -
21 votesTony S supported this idea ·
-
1 vote
An error occurred while saving the comment Tony S commentedHi Matt, I think it's already possible since version 10: https://howto.caspio.com/release-notes/caspio-bridge-10-0/
I found an example on HowTo: https://howto.caspio.com/integration/web-services-api/rest-api/operations/table-operations/
POST: {“field1″:”value1″,”field2″:”value2”, “listField”:[1,3]}
it seems you can send List data in square braces. Where 1 and 3 are the option IDs, which you can get via GET requestDoes it work for you?
This is possible to do using Application Task feature https://howto.caspio.com/tasks/