[SOLVED] Email Plugin; Missing Display Page

Hello there,

as above the display page couldnt be found but it was working before (prototype stage). I am not sure but i guess that after i enabled mulit language support its broken.

My setup, the form is in a modular page like

/_contact
contact.de.md
contact.pl.md

/form-thx
formdata.de.md
formdata.pl.md

The frontmatter section looks like

    process:
    -
        email:
            from: '{{ config.plugins.email.from }}'
            to: ['{{ config.plugins.email.from }}', '{{ form.value.email }}']
            .....
            .....
            .....
    -
        message: 'Dziękujemy za wiadomość'
    -
        display: form-thx

The runtime exception page looks normal to me, except of this

REQUEST_URI 	"/dehome"
REDIRECT_URL    "/dehome"

Theres missing a slash between de and home.

I tried to put a fallback markdown file formdata.md in the form-thx folder but still its not working.

Any thoughts?

Thx in advance.

I just figuered it out. The form definition was wrong. I changed as below:

form:
    ...
    action: home -> action: /home
    ...