Contact Form Error

Hey,

Today I tried to create a contact-form with neos. I followed the following instructions.

http://neos.readthedocs.io/en/stable/HowTos/AddingSimpleContactForm.html

The form is displayed and the validation works. But when I press “send” I got the following error:

Class ‘TYPO3\SwiftMailer\Message’ not found
Error thrown in file
/html/neos/Data/Temporary/Development/Cache/Code/Flow_Object_Classes/TYPO3_Form_Finishers_EmailFinisher.php in line 89.

I have installed swiftmailer with the following command:

composer require swiftmailer/swiftmailer

Hope someone can help me.

Greetings David

Hey @DavidLang,

you are missing a TYPO3\Swiftmailer… Class.

you do need to require this package: https://packagist.org/packages/typo3/swiftmailer

Hey @stolle,

thanks, that was the problem. Now it’s working.

All right, closing this one for now :slight_smile: