Project

General

Profile

Actions

Bug #83010

closed

EXT: form - do not send email notification by EmailToReceiver

Added by Robert Gonda over 6 years ago. Updated over 1 year ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Form Framework
Target version:
-
Start date:
2017-11-16
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
form
Complexity:
Is Regression:
Sprint Focus:

Description

Hello.
I want use Typo3 EXT:form for send email notification to receiver after submit.
Everything is working fine, but email in not sending - no errors, no warnings on Typo3 log.
I try put devlog function into Classes/Domain/Finishers/EmailFinisher.php - have no output.

Typo3 8.7.8
My YAML configuration is in attachment kontaktnformulr.yaml.

THX for help!


Files

kontaktnformulr-issue.yaml (1.87 KB) kontaktnformulr-issue.yaml Robert Gonda, 2017-11-16 10:42
Actions #1

Updated by Björn Jacob over 6 years ago

  • Category set to Form Framework
Actions #2

Updated by Anonymous over 6 years ago

  • Priority changed from Should have to Must have

Same problem here TYPO3 8.7.9 - PHP 7.1
TYPO3 sends emails via Test in installtool but the form finisher does not send anything.

Actions #3

Updated by Anonymous about 6 years ago

So its working for me now... don't no why :-) (maybe some sort of misconfiguration) sadly I have currently no time to figure it out, but I can say: in general the sending of emails works.

Actions #4

Updated by Björn Jacob about 6 years ago

  • Status changed from New to Needs Feedback
  • Assignee set to Robert Gonda

Do you still experience this problem?

Actions #5

Updated by Robert Gonda about 6 years ago

I am not using ext form now, because I do not have much time to solve such elementary problems.
Old, good formhandler ...

Actions #6

Updated by Björn Jacob about 6 years ago

  • Status changed from Needs Feedback to Closed
  • Assignee deleted (Robert Gonda)
Actions #7

Updated by Mohamed Masmoudi about 5 years ago

I have the same problem, the test mail works fine, the form submit with no errors, but no email is sent, Typo3 7.6.32 and form,
PHP version: 7.0.33

Actions #8

Updated by Dieter Porth over 1 year ago

  • TYPO3 Version changed from 8 to 11
  • PHP Version changed from 7.0 to 7.2

I have the similiar problem with TYPO3 11, while I tried to use a form with an AJAX-request. The finischer for sending of emails would work sometimes; and sometimes it would not work. After a lot of poking around, I found out:

The following version in the template of the form prohibited the sending of mails in my case:

    <f:form.textfield
        value="{myLink}" 
        name="{element.identifier}" 
        id="{element.uniqueIdentifier}" 
        errorClass="{element.properties.elementErrorClassAttribute}" 
        additionalAttributes="{formvh:translateElementProperty(element: element, property: 'fluidAdditionalAttributes')}" 
    />

The following version performed the sending of mails in my case:

<f:form.textfield
    value="{myLink}" 
    property="{element.identifier}" 
    id="{element.uniqueIdentifier}" 
    errorClass="{element.properties.elementErrorClassAttribute}" 
    additionalAttributes="{formvh:translateElementProperty(element: element, property: 'fluidAdditionalAttributes')}" 
/> 

Actions #9

Updated by Björn Jacob over 1 year ago

  • TYPO3 Version changed from 11 to 8
  • PHP Version changed from 7.2 to 7.0

Thank you for your report. Please do not "re-open" closed tickets. I will create a new one to handle your issue :)

Actions

Also available in: Atom PDF