How to set Email Configurations correctly

Hi!

I’m trying to use the built-in email engine of Kirby. Without any configuration it works fine, although Googlemail doesn’t receive the emails because of it poor security status. I tried to fix this with the following configuration on my server, but now nothing happens at all.
I also don’t quite understand how this works, wouldn’t one need any user + password configuration for SMTP as well?

Thanks for any hints…

    'email' => [
        'transport' => [
            'type'     => 'smtp',
            'host'     => 'mail.manitu.de',
            'port'     => 465,
            'security' => true
        ]
    ],

yes

Hey,
this is my config for manitu

'email' => [
        'transport' => [
            'type' => 'smtp',
            'host' => 'mail.manitu.de',
            'port' => 465,
            'security' => true,
            'auth' => true,
            'username' => 'USERNAME,
            'password' => 'PASSWORD'
        ]
    ],
1 Like