You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have TYPO3 v8 (8.7.31) and Notiz v2.1.2.
When I add new notification and set email as channel, emails are not sent.
TYPO3 email configuration is working correctly via SMTP.
After some debugging I found out that emails are sent correctly if I comment out line 136 in file notiz/Classes/Domain/Channel/Email/TYPO3/EmailChannel.php: $this->dispatchEmailSignal($mailMessage);
This call only do simple dispatch, but somehow mess up message sending.
I was not able to find out why this happens...
Best regards,
Sinisa Mitrovic
The text was updated successfully, but these errors were encountered:
Thanks for the report. We just tried on our system and the notification is dispatched correctly.
From what you said, it seems that the dispatch of the signal somehow messes up the execution. Do you have any log that would indicate if an error occurs at this moment?
Can you check if you listen to this signal, as explained in the documentation?
Also, can you tell us what event are you listening to? Is it a provided one or a custom one?
Hello,
We have TYPO3 v8 (8.7.31) and Notiz v2.1.2.
When I add new notification and set email as channel, emails are not sent.
TYPO3 email configuration is working correctly via SMTP.
After some debugging I found out that emails are sent correctly if I comment out line 136 in file notiz/Classes/Domain/Channel/Email/TYPO3/EmailChannel.php:
$this->dispatchEmailSignal($mailMessage);
This call only do simple dispatch, but somehow mess up message sending.
I was not able to find out why this happens...
Best regards,
Sinisa Mitrovic
The text was updated successfully, but these errors were encountered: