You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
THe bot must be able to collect information through the chat, like if the user was filling a form, but the data must come trough the chat, and be validated by the bot, befores is saved or sent somewhere.
Eg:
user > Hi I want to register
bot > What's is your name?
user > my name is John Doe
bot > thanks mr. John Doe. What is your e-mail address?
user > is [email protected]
bot > Sorry John Doe, that's not a valid e-mail address. Please answer with a valid e-mail address or type 'cancel'
user > my e-mail is [email protected]
bot > thank's Mr. John Doe, you registered into our newsletter with the e-mail address
[email protected]. Please confirm your e-mail by clicking in the link I sent you.
Validation must come to all sorts of fields, text, date, e-mail and stuff. One good way to do this is to identify the information inside the message and run it against a RegExp pattern.
The text was updated successfully, but these errors were encountered:
THe bot must be able to collect information through the chat, like if the user was filling a form, but the data must come trough the chat, and be validated by the bot, befores is saved or sent somewhere.
Eg:
Validation must come to all sorts of fields, text, date, e-mail and stuff. One good way to do this is to identify the information inside the message and run it against a RegExp pattern.
The text was updated successfully, but these errors were encountered: