How to print two messages at a time after user says 'Hi'

When user starts saying “Hi” or anything, how to print two messages like

  • Welcome to Rasa Community
  • May I know your name

After user says hi , Rasa bot first should say “Welcome to Rasa Community” and next should say “May I know your name” is it possible to do?

Just add two utter lines in your relevant story in stories.md.

## greeting story
* greet
  - utter_greet
  - utter_ask_name
1 Like

Thank you it worked fine.