bnomei/kirby3-mailtester

View on GitHub
index.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

@include_once __DIR__ . '/vendor/autoload.php';

Kirby::plugin('bnomei/mailtester', [
    'options' => [

    ],
    'commands' => [ // https://github.com/getkirby/cli
        'mailtester:spam' => require __DIR__ . '/commands/spam.php',
    ],
    'translations' => [
        'en' => [
            // defined inline as fallbacks
        ],
        'de' => [
            'mailtester.timeout' => 'Timeout-Fehler',
            'mailtester.sending-email-failed' => 'Email konnte nicht versandt werden',
        ],
    ]
]);