[SOLVED] Form e-mail/confirmation-finisher with «dynamic-data» from form

Hello,
I can’t find a solution to send confirmation-email to form-filler in Code/Docu or with Google.

  • How you send automatic e-mail-confirmations to form-fillers?

No «dynamic data»-information in documentation: AddingSimpleContactForm
Only «dynamic data»-Information in email-content, nothing about email-head: Formulare erstellen mit Neos Form-Framework

  • Did someone know a working solution, matching documentation, tutorial or a plugin/package?

Hello Martin,

in general you add a second email finisher that uses the sender field from the form data as recipient.

Regards, Martin

As Martin wrote, just configure a second Email finisher.
For example you could have two obligatory fields for name and emailAddress of the “form-filler” and then:

finishers:
  -
  identifier: 'TYPO3.Form:Email'
  options:
    templatePathAndFilename: 'resource://Vendor.Site/Private/Templates/Email/SignupNotification.html'
    subject: 'New registration'
    recipientAddress: 'admin@yoursite.com'
    recipientName: 'Your company'
    senderAddress: 'automailer@yoursite.com'
    senderName: '{name}'
    replyToAddress: '{emailAddress}'
  -
  identifier: 'TYPO3.Form:Email'
  options:
    templatePathAndFilename: 'resource://Vendor.Site/Private/Templates/Email/SignupConfirmation.html'
    subject: 'Your registration at yoursite.com'
    recipientAddress: '{emailAddress}'
    recipientName: '{name}'
    senderAddress: 'automailer@yoursite.com'
    senderName: 'Your company'
1 Like

Hey @mficzel and @bwaidelich,
works fine. Thank you both!

1 Like

Yes sure.

Vendor.Name:Page:
  properties:
    headline:
      ui:
        inlineEditable: true
        inline:
          editorOptions:
            placholder: "Enter headline here"