mad
(Martin Huber)
December 28, 2016, 8:06am
#1
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?
mficzel
(Martin Ficzel)
December 28, 2016, 6:24pm
#2
Hello Martin,
in general you add a second email finisher that uses the sender field from the form data as recipient.
Regards, Martin
bwaidelich
(Bastian Waidelich)
December 30, 2016, 1:21pm
#3
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
mad
(Martin Huber)
January 2, 2017, 8:30am
#4
Hey @mficzel and @bwaidelich ,
works fine. Thank you both!
1 Like
Matschess
(Matthias Lang)
February 20, 2019, 2:22pm
#5
Yes sure.
Vendor.Name:Page:
properties:
headline:
ui:
inlineEditable: true
inline:
editorOptions:
placholder: "Enter headline here"