Skip to content

Template - Welcome Email

This template allows you to create a flow that is triggered when a new customer registers and automatically sends them a welcome email, optionally saving the event to an Excel file or database.

NodeFunction
WebhookTriggers the flow upon receiving an external request
DecisionChecks if the received data contains a valid email or other filters
SendMailSends an email to the user with personalized content
saveToExcel(optional) Saves the new user’s data to an Excel file
EndEnds the flow
  1. An external request is received from an external system or web form via Webhook.
  2. The data is validated (e.g., the email is not empty).
  3. If validation passes, a personalized email is sent.
  4. Optionally, a row with the data is saved to an Excel file or database.
  5. The flow ends.

Image

  • Make sure your email sending credentials are configured before testing.
  • Review the email format and personalize the body with dynamic variables ({{data.name}}, etc.).
  • Use saveToExcel only if you need additional persistence for reports.
  • url_webhook: automatically generated by Floogos.
  • condition: data.email && data.email.includes(”@“)
  • to: {{data.email}}
  • subject: “Welcome to our platform!”
  • body: Hi {{data.name}}, thank you for signing up…
  • filePath: /documents/new_users.xlsx
  • dataKey: data
  • This template can be easily adapted to the user’s language if data.language is available.

End of template