ESPCOR Posted December 5, 2012 Report Share Posted December 5, 2012 I have clients that run events and I would like them to be able to invite people by email to their events. 1) How can they add email addresses to send invitations? I would like there to be a default of 5 open fields and the ability for them to add more open fields if required and send out the invitations. 2) Import their own list of email addresses (excel, txt, etc) and send invitations. 3) The ability to see who they sent invites to and who responded eg: attending event y/n Support is of no use, been days not communication Quote Link to comment Share on other sites More sharing options...
MayMusic Posted February 6, 2013 Report Share Posted February 6, 2013 Is it like a submission page that user use to create event and then you use acknowledgement email to send invitations? if yes, then you should have one field and have the user enter emails and separate them by ";" also keep in mind that there is a limitation on email characters in all web mail systems. T :!: :!: :!: Quote Link to comment Share on other sites More sharing options...
srufini Posted June 9, 2016 Report Share Posted June 9, 2016 Hi, I am attempting to do the same but : 1) how can I group all the email addresses of selected users in one single virtual field? 2) can I put some code in the body of the email in order to create an event invitation for zimbra/gmail/exchange users? Thanks Sergio Quote Link to comment Share on other sites More sharing options...
aam82 Posted June 9, 2016 Report Share Posted June 9, 2016 1) If you have a report of all users, you can check boxes of each user to email. You can use a script to preselect users based on criteria, but you will have to send emails in 999 user chunks (Caspio record limit per page). This script looks for a field >=1 and if so, marks it for bulk editing (for emailing). It works because it is the only field with the matching selector(.cbResultSet...) on the page. I use it to send emails to about 100 every other week. <script type="text/javascript"> var delay=1000; setTimeout(function() { var elems = document.querySelectorAll(".cbResultSetTableCellNumberDate"); for (var i=0, m=elems.length; i<m; i++) { if (elems[i].innerText >= 1) { elems[i].parentNode.firstChild.firstChild.click(); } } },delay); </script> As far as I know, 2) is done with file attachments. It's not a matter of generating a URL to insert in your message. Quote Link to comment Share on other sites More sharing options...
srufini Posted June 10, 2016 Report Share Posted June 10, 2016 Thanks aam82! I need to learn how to embed javascripts in caspio... guess time has come. 2) the attachment for the invitation can be automatically generated? because should depend on the information put in the form (i.e. agenda, title, date of the meeting) Thanks again Quote Link to comment Share on other sites More sharing options...
aam82 Posted June 10, 2016 Report Share Posted June 10, 2016 srufini, take a look at the javascript forum section for tips. 2)no, this would require use of the API and custom programming. I don't know another way. srufini 1 Quote Link to comment Share on other sites More sharing options...
Kurumi Posted December 24, 2018 Report Share Posted December 24, 2018 Hi @ESPCOR, As of October 16, 2018, Caspio introduced new features which you can find here: https://howto.caspio.com/release-notes/caspio-bridge-15-0/ This release includes a new feature, Scheduled Tasks. This allows you to modify data and send email or SMS notifications based on a predefined time schedule which you can use to your email invite. For more information about Tasks: https://howto.caspio.com/tasks/ Check these videos for more information: I hope this helps! Quote Link to comment Share on other sites More sharing options...
RuisiHansamu Posted January 31, 2023 Report Share Posted January 31, 2023 Hi, there is a similar post and topic regarding this here as well: 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.
Note: Your post will require moderator approval before it will be visible.