Hey guys,
I am trying to model a email reminder task that we send to our clients we want them to open a link and if they do not within 7 days we send them a reminder. after that another process takes on.
Can I have your thought on the way to model this ? What I am struggling with is that if they do not click on the link or they click on the link and do nothing it’s the same result : we send them a reminder.
Thanks!
Alex
email reminder.bpmn (17.5 KB)
Check out these past examples of similar flows:
@stanislav if you do some searching around the forum for “Page Flow” and “Multi-Step forms” you will see a bunch of different threads that talk about the pros and cons, and some of the big catch 22s.
Specifically for a registration process, i am reminded of the password reset model. When you register a new user, the preferable security measure would be that a registering user cannot “Test” if another user exists. So when the user needs to register, you send them a email to them. That email h…
Wanted to share a proof of concept that I had put together:
In other examples such as: Send SMS through Service Task (http-connector) and Twilio (Script Based) , we send SMS messages with twilio, but there was never the ability to receive a response back from the recipient of the SMS. Until now!
So consider the following scenario: You need to ask a question to a recipient and have them provide you some response. A more concrete example could be that you are looking to find out the num…
Had this use case come up today in some example scenarios:
I whipped together a hapi/node server + the twillio example to send “approve/deny” URLs to the user.
Just posting for anyone that comes across this use case later.
Node Code
'use strict';
const Hapi = require('hapi');
const Boom = require('boom');
const loki = require('lokijs');
const Wreck = require('wreck');
const uuidV4 = require('uuid/v4');
var db = new loki('loki.json')
var decisions = db.addCollection('decisions')
const serv…