Confirmation mail after submitting a form

Hey,

Is there a way to receive an automatic mail after submitting a form with all my answers? Is this in the roadmap? I tried with n8n but it is hard to get form information on the n8n side (webhooks can not be triggered by form submissions).

Thanks,

Asan :fox_face:

Hi @asan,

you should be able to enable notification on the form itself, and if your personal account settings have enabled notifications by email, you should also get an email:

Or did you mean to send an email to the person filling it in (granted you are collecting email addresses)?

Yes, I meant sending an email to the person filling (thus requiring collecting the email address). Sorry that was not clear :slight_smile:

Hi @asan,

You can do this with our automations module. If you create a workflow such as:

  1. On rows created β†’ the table to which the form is writing.
  2. The email field in the form is required:
    1. Yes β†’ add a Send an email node, with the rows created β†’ 0 β†’ email as the to.
    2. No β†’ add a Router node, where the condition checks if the email is set using is_empty.
      1. If it’s empty: do nothing
      2. If it’s set: same as above, add a Send an email node.

Now, when the form is submitted with an email, the visitor who filled the form is sent your email.

Let me know if I can clarify anything!

Cheers,

Peter Evans

1 Like